blob: 56b2fb8135ce5add5a06f03ce4b4b306a677c5fc [file] [log] [blame]
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001#include "builtin.h"
2
Andrea Gelminib7eead82010-08-05 15:51:38 +02003#include "perf.h"
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02004#include "util/cache.h"
Andrea Gelminib7eead82010-08-05 15:51:38 +02005#include "util/debug.h"
Josh Poimboeuf4b6ab942015-12-15 09:39:39 -06006#include <subcmd/exec-cmd.h>
Andrea Gelminib7eead82010-08-05 15:51:38 +02007#include "util/header.h"
Josh Poimboeuf4b6ab942015-12-15 09:39:39 -06008#include <subcmd/parse-options.h>
Stephane Eranianfc36f942015-08-31 18:41:10 +02009#include "util/perf_regs.h"
Andrea Gelminib7eead82010-08-05 15:51:38 +020010#include "util/session.h"
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020011#include "util/tool.h"
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +020012#include "util/symbol.h"
13#include "util/thread.h"
Ingo Molnarcf723442009-11-28 10:11:00 +010014#include "util/trace-event.h"
Andrea Gelminib7eead82010-08-05 15:51:38 +020015#include "util/util.h"
David Ahern1424dc92011-03-09 22:23:28 -070016#include "util/evlist.h"
17#include "util/evsel.h"
Feng Tang36385be2012-09-07 16:42:24 +080018#include "util/sort.h"
Jiri Olsaf5fc14122013-10-15 16:27:32 +020019#include "util/data.h"
Adrian Hunter7a680eb2015-04-09 18:53:56 +030020#include "util/auxtrace.h"
Jiri Olsacfc88742016-01-05 22:09:06 +010021#include "util/cpumap.h"
22#include "util/thread_map.h"
23#include "util/stat.h"
Anton Blanchard5d67be92011-07-04 21:57:50 +100024#include <linux/bitmap.h>
Arnaldo Carvalho de Melo6125cc82016-04-14 18:15:18 -030025#include <linux/stringify.h>
Jiri Olsacfc88742016-01-05 22:09:06 +010026#include "asm/bug.h"
Jiri Olsac19ac912016-02-24 09:46:54 +010027#include "util/mem-events.h"
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +020028
Tom Zanussi956ffd02009-11-25 01:15:46 -060029static char const *script_name;
30static char const *generate_script_lang;
Frederic Weisbeckerffabd992010-05-27 16:27:47 +020031static bool debug_mode;
Frederic Weisbeckere1889d72010-04-24 01:55:09 +020032static u64 last_timestamp;
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +020033static u64 nr_unordered;
David Ahernc0230b22011-03-09 22:23:27 -070034static bool no_callchain;
Namhyung Kim47390ae2013-06-04 14:20:28 +090035static bool latency_format;
Robert Richter317df652011-11-25 15:05:25 +010036static bool system_wide;
Adrian Hunter400ea6d2015-04-09 18:54:05 +030037static bool print_flags;
Adrian Hunter83e19862015-09-25 16:15:36 +030038static bool nanosecs;
Anton Blanchard5d67be92011-07-04 21:57:50 +100039static const char *cpu_list;
40static DECLARE_BITMAP(cpu_bitmap, MAX_NR_CPUS);
Jiri Olsa91a2c3d2016-01-05 22:09:07 +010041static struct perf_stat_config stat_config;
Tom Zanussi956ffd02009-11-25 01:15:46 -060042
Adrian Hunter44cbe722015-09-25 16:15:50 +030043unsigned int scripting_max_stack = PERF_MAX_STACK_DEPTH;
Adrian Hunter03cd1fe2015-09-25 16:15:49 +030044
David Ahern745f43e2011-03-09 22:23:26 -070045enum perf_output_field {
46 PERF_OUTPUT_COMM = 1U << 0,
47 PERF_OUTPUT_TID = 1U << 1,
48 PERF_OUTPUT_PID = 1U << 2,
49 PERF_OUTPUT_TIME = 1U << 3,
50 PERF_OUTPUT_CPU = 1U << 4,
51 PERF_OUTPUT_EVNAME = 1U << 5,
52 PERF_OUTPUT_TRACE = 1U << 6,
David Ahern787bef12011-05-27 14:28:43 -060053 PERF_OUTPUT_IP = 1U << 7,
54 PERF_OUTPUT_SYM = 1U << 8,
David Ahern610723f2011-05-27 14:28:44 -060055 PERF_OUTPUT_DSO = 1U << 9,
David Ahern7cec0922011-05-30 13:08:23 -060056 PERF_OUTPUT_ADDR = 1U << 10,
Akihiro Nagaia978f2a2012-01-30 13:43:15 +090057 PERF_OUTPUT_SYMOFFSET = 1U << 11,
Adrian Huntercc8fae12013-12-06 09:42:57 +020058 PERF_OUTPUT_SRCLINE = 1U << 12,
Jiri Olsa535aeaae2014-08-25 16:45:42 +020059 PERF_OUTPUT_PERIOD = 1U << 13,
Stephane Eranianfc36f942015-08-31 18:41:10 +020060 PERF_OUTPUT_IREGS = 1U << 14,
Stephane Eraniandc323ce2015-08-31 18:41:13 +020061 PERF_OUTPUT_BRSTACK = 1U << 15,
62 PERF_OUTPUT_BRSTACKSYM = 1U << 16,
Jiri Olsa94ddddf2016-02-15 09:34:51 +010063 PERF_OUTPUT_DATA_SRC = 1U << 17,
64 PERF_OUTPUT_WEIGHT = 1U << 18,
Wang Nan30372f02016-02-24 11:20:45 +000065 PERF_OUTPUT_BPF_OUTPUT = 1U << 19,
David Ahern745f43e2011-03-09 22:23:26 -070066};
67
68struct output_option {
69 const char *str;
70 enum perf_output_field field;
71} all_output_options[] = {
72 {.str = "comm", .field = PERF_OUTPUT_COMM},
73 {.str = "tid", .field = PERF_OUTPUT_TID},
74 {.str = "pid", .field = PERF_OUTPUT_PID},
75 {.str = "time", .field = PERF_OUTPUT_TIME},
76 {.str = "cpu", .field = PERF_OUTPUT_CPU},
77 {.str = "event", .field = PERF_OUTPUT_EVNAME},
78 {.str = "trace", .field = PERF_OUTPUT_TRACE},
David Ahern787bef12011-05-27 14:28:43 -060079 {.str = "ip", .field = PERF_OUTPUT_IP},
David Ahernc0230b22011-03-09 22:23:27 -070080 {.str = "sym", .field = PERF_OUTPUT_SYM},
David Ahern610723f2011-05-27 14:28:44 -060081 {.str = "dso", .field = PERF_OUTPUT_DSO},
David Ahern7cec0922011-05-30 13:08:23 -060082 {.str = "addr", .field = PERF_OUTPUT_ADDR},
Akihiro Nagaia978f2a2012-01-30 13:43:15 +090083 {.str = "symoff", .field = PERF_OUTPUT_SYMOFFSET},
Adrian Huntercc8fae12013-12-06 09:42:57 +020084 {.str = "srcline", .field = PERF_OUTPUT_SRCLINE},
Jiri Olsa535aeaae2014-08-25 16:45:42 +020085 {.str = "period", .field = PERF_OUTPUT_PERIOD},
Stephane Eranianfc36f942015-08-31 18:41:10 +020086 {.str = "iregs", .field = PERF_OUTPUT_IREGS},
Stephane Eraniandc323ce2015-08-31 18:41:13 +020087 {.str = "brstack", .field = PERF_OUTPUT_BRSTACK},
88 {.str = "brstacksym", .field = PERF_OUTPUT_BRSTACKSYM},
Jiri Olsa94ddddf2016-02-15 09:34:51 +010089 {.str = "data_src", .field = PERF_OUTPUT_DATA_SRC},
90 {.str = "weight", .field = PERF_OUTPUT_WEIGHT},
Wang Nan30372f02016-02-24 11:20:45 +000091 {.str = "bpf-output", .field = PERF_OUTPUT_BPF_OUTPUT},
David Ahern745f43e2011-03-09 22:23:26 -070092};
93
94/* default set to maintain compatibility with current format */
David Ahern2c9e45f72011-03-17 10:03:21 -060095static struct {
96 bool user_set;
David Ahern9cbdb702011-04-06 21:54:20 -060097 bool wildcard_set;
David Aherna6ffaf92013-08-07 22:50:51 -040098 unsigned int print_ip_opts;
David Ahern2c9e45f72011-03-17 10:03:21 -060099 u64 fields;
100 u64 invalid_fields;
101} output[PERF_TYPE_MAX] = {
David Ahern1424dc92011-03-09 22:23:28 -0700102
David Ahern2c9e45f72011-03-17 10:03:21 -0600103 [PERF_TYPE_HARDWARE] = {
104 .user_set = false,
David Ahern1424dc92011-03-09 22:23:28 -0700105
David Ahern2c9e45f72011-03-17 10:03:21 -0600106 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
107 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
David Ahern787bef12011-05-27 14:28:43 -0600108 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
Jiri Olsae8564b72014-08-25 16:45:43 +0200109 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO |
110 PERF_OUTPUT_PERIOD,
David Ahern2c9e45f72011-03-17 10:03:21 -0600111
Wang Nan30372f02016-02-24 11:20:45 +0000112 .invalid_fields = PERF_OUTPUT_TRACE | PERF_OUTPUT_BPF_OUTPUT,
David Ahern2c9e45f72011-03-17 10:03:21 -0600113 },
114
115 [PERF_TYPE_SOFTWARE] = {
116 .user_set = false,
117
118 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
119 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
David Ahern787bef12011-05-27 14:28:43 -0600120 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
Jiri Olsae8564b72014-08-25 16:45:43 +0200121 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO |
Wang Nan30372f02016-02-24 11:20:45 +0000122 PERF_OUTPUT_PERIOD | PERF_OUTPUT_BPF_OUTPUT,
David Ahern2c9e45f72011-03-17 10:03:21 -0600123
124 .invalid_fields = PERF_OUTPUT_TRACE,
125 },
126
127 [PERF_TYPE_TRACEPOINT] = {
128 .user_set = false,
129
130 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
131 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
Wang Nan30372f02016-02-24 11:20:45 +0000132 PERF_OUTPUT_EVNAME | PERF_OUTPUT_TRACE
David Ahern2c9e45f72011-03-17 10:03:21 -0600133 },
Arun Sharma0817a6a2011-04-14 10:38:18 -0700134
135 [PERF_TYPE_RAW] = {
136 .user_set = false,
137
138 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
139 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
David Ahern787bef12011-05-27 14:28:43 -0600140 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
Jiri Olsae8564b72014-08-25 16:45:43 +0200141 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO |
Jiri Olsaff7b1912016-02-15 09:34:52 +0100142 PERF_OUTPUT_PERIOD | PERF_OUTPUT_ADDR |
143 PERF_OUTPUT_DATA_SRC | PERF_OUTPUT_WEIGHT,
Arun Sharma0817a6a2011-04-14 10:38:18 -0700144
Wang Nan30372f02016-02-24 11:20:45 +0000145 .invalid_fields = PERF_OUTPUT_TRACE | PERF_OUTPUT_BPF_OUTPUT,
Arun Sharma0817a6a2011-04-14 10:38:18 -0700146 },
Wang Nan27cfef02015-12-08 02:25:43 +0000147
148 [PERF_TYPE_BREAKPOINT] = {
149 .user_set = false,
150
151 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
152 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
153 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
154 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO |
155 PERF_OUTPUT_PERIOD,
156
Wang Nan30372f02016-02-24 11:20:45 +0000157 .invalid_fields = PERF_OUTPUT_TRACE | PERF_OUTPUT_BPF_OUTPUT,
Wang Nan27cfef02015-12-08 02:25:43 +0000158 },
David Ahern1424dc92011-03-09 22:23:28 -0700159};
David Ahern745f43e2011-03-09 22:23:26 -0700160
David Ahern2c9e45f72011-03-17 10:03:21 -0600161static bool output_set_by_user(void)
162{
163 int j;
164 for (j = 0; j < PERF_TYPE_MAX; ++j) {
165 if (output[j].user_set)
166 return true;
167 }
168 return false;
169}
David Ahern745f43e2011-03-09 22:23:26 -0700170
David Ahern9cbdb702011-04-06 21:54:20 -0600171static const char *output_field2str(enum perf_output_field field)
172{
173 int i, imax = ARRAY_SIZE(all_output_options);
174 const char *str = "";
175
176 for (i = 0; i < imax; ++i) {
177 if (all_output_options[i].field == field) {
178 str = all_output_options[i].str;
179 break;
180 }
181 }
182 return str;
183}
184
David Ahern2c9e45f72011-03-17 10:03:21 -0600185#define PRINT_FIELD(x) (output[attr->type].fields & PERF_OUTPUT_##x)
David Ahern1424dc92011-03-09 22:23:28 -0700186
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300187static int perf_evsel__do_check_stype(struct perf_evsel *evsel,
188 u64 sample_type, const char *sample_msg,
189 enum perf_output_field field,
190 bool allow_user_set)
David Ahern1424dc92011-03-09 22:23:28 -0700191{
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300192 struct perf_event_attr *attr = &evsel->attr;
David Ahern9cbdb702011-04-06 21:54:20 -0600193 int type = attr->type;
194 const char *evname;
195
196 if (attr->sample_type & sample_type)
197 return 0;
198
199 if (output[type].user_set) {
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300200 if (allow_user_set)
201 return 0;
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300202 evname = perf_evsel__name(evsel);
David Ahern9cbdb702011-04-06 21:54:20 -0600203 pr_err("Samples for '%s' event do not have %s attribute set. "
204 "Cannot print '%s' field.\n",
205 evname, sample_msg, output_field2str(field));
206 return -1;
207 }
208
209 /* user did not ask for it explicitly so remove from the default list */
210 output[type].fields &= ~field;
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300211 evname = perf_evsel__name(evsel);
David Ahern9cbdb702011-04-06 21:54:20 -0600212 pr_debug("Samples for '%s' event do not have %s attribute set. "
213 "Skipping '%s' field.\n",
214 evname, sample_msg, output_field2str(field));
215
216 return 0;
217}
218
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300219static int perf_evsel__check_stype(struct perf_evsel *evsel,
220 u64 sample_type, const char *sample_msg,
221 enum perf_output_field field)
222{
223 return perf_evsel__do_check_stype(evsel, sample_type, sample_msg, field,
224 false);
225}
226
David Ahern9cbdb702011-04-06 21:54:20 -0600227static int perf_evsel__check_attr(struct perf_evsel *evsel,
228 struct perf_session *session)
229{
230 struct perf_event_attr *attr = &evsel->attr;
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300231 bool allow_user_set;
232
Jiri Olsae099eba2016-01-05 22:09:09 +0100233 if (perf_header__has_feat(&session->header, HEADER_STAT))
234 return 0;
235
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300236 allow_user_set = perf_header__has_feat(&session->header,
237 HEADER_AUXTRACE);
David Ahern9cbdb702011-04-06 21:54:20 -0600238
David Ahern1424dc92011-03-09 22:23:28 -0700239 if (PRINT_FIELD(TRACE) &&
240 !perf_session__has_traces(session, "record -R"))
241 return -EINVAL;
242
David Ahern787bef12011-05-27 14:28:43 -0600243 if (PRINT_FIELD(IP)) {
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300244 if (perf_evsel__check_stype(evsel, PERF_SAMPLE_IP, "IP",
245 PERF_OUTPUT_IP))
David Ahern1424dc92011-03-09 22:23:28 -0700246 return -EINVAL;
David Ahern1424dc92011-03-09 22:23:28 -0700247 }
David Ahern7cec0922011-05-30 13:08:23 -0600248
249 if (PRINT_FIELD(ADDR) &&
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300250 perf_evsel__do_check_stype(evsel, PERF_SAMPLE_ADDR, "ADDR",
251 PERF_OUTPUT_ADDR, allow_user_set))
David Ahern7cec0922011-05-30 13:08:23 -0600252 return -EINVAL;
253
Jiri Olsa94ddddf2016-02-15 09:34:51 +0100254 if (PRINT_FIELD(DATA_SRC) &&
255 perf_evsel__check_stype(evsel, PERF_SAMPLE_DATA_SRC, "DATA_SRC",
256 PERF_OUTPUT_DATA_SRC))
257 return -EINVAL;
258
259 if (PRINT_FIELD(WEIGHT) &&
260 perf_evsel__check_stype(evsel, PERF_SAMPLE_WEIGHT, "WEIGHT",
261 PERF_OUTPUT_WEIGHT))
262 return -EINVAL;
263
David Ahern7cec0922011-05-30 13:08:23 -0600264 if (PRINT_FIELD(SYM) && !PRINT_FIELD(IP) && !PRINT_FIELD(ADDR)) {
265 pr_err("Display of symbols requested but neither sample IP nor "
266 "sample address\nis selected. Hence, no addresses to convert "
267 "to symbols.\n");
David Ahern787bef12011-05-27 14:28:43 -0600268 return -EINVAL;
269 }
Akihiro Nagaia978f2a2012-01-30 13:43:15 +0900270 if (PRINT_FIELD(SYMOFFSET) && !PRINT_FIELD(SYM)) {
271 pr_err("Display of offsets requested but symbol is not"
272 "selected.\n");
273 return -EINVAL;
274 }
David Ahern7cec0922011-05-30 13:08:23 -0600275 if (PRINT_FIELD(DSO) && !PRINT_FIELD(IP) && !PRINT_FIELD(ADDR)) {
276 pr_err("Display of DSO requested but neither sample IP nor "
277 "sample address\nis selected. Hence, no addresses to convert "
278 "to DSO.\n");
David Ahern610723f2011-05-27 14:28:44 -0600279 return -EINVAL;
280 }
Adrian Huntercc8fae12013-12-06 09:42:57 +0200281 if (PRINT_FIELD(SRCLINE) && !PRINT_FIELD(IP)) {
282 pr_err("Display of source line number requested but sample IP is not\n"
283 "selected. Hence, no address to lookup the source line number.\n");
284 return -EINVAL;
285 }
David Ahern1424dc92011-03-09 22:23:28 -0700286
287 if ((PRINT_FIELD(PID) || PRINT_FIELD(TID)) &&
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300288 perf_evsel__check_stype(evsel, PERF_SAMPLE_TID, "TID",
289 PERF_OUTPUT_TID|PERF_OUTPUT_PID))
David Ahern1424dc92011-03-09 22:23:28 -0700290 return -EINVAL;
David Ahern1424dc92011-03-09 22:23:28 -0700291
292 if (PRINT_FIELD(TIME) &&
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300293 perf_evsel__check_stype(evsel, PERF_SAMPLE_TIME, "TIME",
294 PERF_OUTPUT_TIME))
David Ahern1424dc92011-03-09 22:23:28 -0700295 return -EINVAL;
David Ahern1424dc92011-03-09 22:23:28 -0700296
297 if (PRINT_FIELD(CPU) &&
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300298 perf_evsel__do_check_stype(evsel, PERF_SAMPLE_CPU, "CPU",
299 PERF_OUTPUT_CPU, allow_user_set))
David Ahern1424dc92011-03-09 22:23:28 -0700300 return -EINVAL;
David Ahern9cbdb702011-04-06 21:54:20 -0600301
Jiri Olsa535aeaae2014-08-25 16:45:42 +0200302 if (PRINT_FIELD(PERIOD) &&
303 perf_evsel__check_stype(evsel, PERF_SAMPLE_PERIOD, "PERIOD",
304 PERF_OUTPUT_PERIOD))
305 return -EINVAL;
306
Stephane Eranianfc36f942015-08-31 18:41:10 +0200307 if (PRINT_FIELD(IREGS) &&
308 perf_evsel__check_stype(evsel, PERF_SAMPLE_REGS_INTR, "IREGS",
309 PERF_OUTPUT_IREGS))
310 return -EINVAL;
311
David Ahern9cbdb702011-04-06 21:54:20 -0600312 return 0;
313}
314
Adrian Hunter7ea95722013-11-01 15:51:30 +0200315static void set_print_ip_opts(struct perf_event_attr *attr)
316{
317 unsigned int type = attr->type;
318
319 output[type].print_ip_opts = 0;
320 if (PRINT_FIELD(IP))
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300321 output[type].print_ip_opts |= EVSEL__PRINT_IP;
Adrian Hunter7ea95722013-11-01 15:51:30 +0200322
323 if (PRINT_FIELD(SYM))
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300324 output[type].print_ip_opts |= EVSEL__PRINT_SYM;
Adrian Hunter7ea95722013-11-01 15:51:30 +0200325
326 if (PRINT_FIELD(DSO))
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300327 output[type].print_ip_opts |= EVSEL__PRINT_DSO;
Adrian Hunter7ea95722013-11-01 15:51:30 +0200328
329 if (PRINT_FIELD(SYMOFFSET))
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300330 output[type].print_ip_opts |= EVSEL__PRINT_SYMOFFSET;
Adrian Huntercc8fae12013-12-06 09:42:57 +0200331
332 if (PRINT_FIELD(SRCLINE))
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300333 output[type].print_ip_opts |= EVSEL__PRINT_SRCLINE;
Adrian Hunter7ea95722013-11-01 15:51:30 +0200334}
335
David Ahern9cbdb702011-04-06 21:54:20 -0600336/*
337 * verify all user requested events exist and the samples
338 * have the expected data
339 */
340static int perf_session__check_output_opt(struct perf_session *session)
341{
He Kuang40f20e52016-05-16 04:51:19 +0000342 unsigned int j;
David Ahern9cbdb702011-04-06 21:54:20 -0600343 struct perf_evsel *evsel;
344
345 for (j = 0; j < PERF_TYPE_MAX; ++j) {
346 evsel = perf_session__find_first_evtype(session, j);
347
348 /*
349 * even if fields is set to 0 (ie., show nothing) event must
350 * exist if user explicitly includes it on the command line
351 */
352 if (!evsel && output[j].user_set && !output[j].wildcard_set) {
353 pr_err("%s events do not exist. "
354 "Remove corresponding -f option to proceed.\n",
355 event_type(j));
356 return -1;
357 }
358
359 if (evsel && output[j].fields &&
360 perf_evsel__check_attr(evsel, session))
361 return -1;
David Aherna6ffaf92013-08-07 22:50:51 -0400362
363 if (evsel == NULL)
364 continue;
365
Adrian Hunter7ea95722013-11-01 15:51:30 +0200366 set_print_ip_opts(&evsel->attr);
David Ahern1424dc92011-03-09 22:23:28 -0700367 }
368
Adrian Hunter98526ee2014-07-31 09:00:59 +0300369 if (!no_callchain) {
370 bool use_callchain = false;
371
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300372 evlist__for_each_entry(session->evlist, evsel) {
Adrian Hunter98526ee2014-07-31 09:00:59 +0300373 if (evsel->attr.sample_type & PERF_SAMPLE_CALLCHAIN) {
374 use_callchain = true;
375 break;
376 }
377 }
378 if (!use_callchain)
379 symbol_conf.use_callchain = false;
380 }
381
David Ahern80b8b492013-11-19 21:07:37 -0700382 /*
383 * set default for tracepoints to print symbols only
384 * if callchains are present
385 */
386 if (symbol_conf.use_callchain &&
387 !output[PERF_TYPE_TRACEPOINT].user_set) {
388 struct perf_event_attr *attr;
389
390 j = PERF_TYPE_TRACEPOINT;
David Ahern80b8b492013-11-19 21:07:37 -0700391
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300392 evlist__for_each_entry(session->evlist, evsel) {
He Kuang40f20e52016-05-16 04:51:19 +0000393 if (evsel->attr.type != j)
394 continue;
David Ahern80b8b492013-11-19 21:07:37 -0700395
He Kuang40f20e52016-05-16 04:51:19 +0000396 attr = &evsel->attr;
397
398 if (attr->sample_type & PERF_SAMPLE_CALLCHAIN) {
399 output[j].fields |= PERF_OUTPUT_IP;
400 output[j].fields |= PERF_OUTPUT_SYM;
401 output[j].fields |= PERF_OUTPUT_DSO;
402 set_print_ip_opts(attr);
403 goto out;
404 }
David Ahern80b8b492013-11-19 21:07:37 -0700405 }
406 }
407
408out:
David Ahern1424dc92011-03-09 22:23:28 -0700409 return 0;
410}
David Ahern745f43e2011-03-09 22:23:26 -0700411
Arnaldo Carvalho de Meloa3dff302016-03-23 11:55:24 -0300412static void print_sample_iregs(struct perf_sample *sample,
Stephane Eranianfc36f942015-08-31 18:41:10 +0200413 struct perf_event_attr *attr)
414{
415 struct regs_dump *regs = &sample->intr_regs;
416 uint64_t mask = attr->sample_regs_intr;
417 unsigned i = 0, r;
418
419 if (!regs)
420 return;
421
422 for_each_set_bit(r, (unsigned long *) &mask, sizeof(mask) * 8) {
423 u64 val = regs->regs[i++];
424 printf("%5s:0x%"PRIx64" ", perf_reg_name(r), val);
425 }
426}
427
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -0300428static void print_sample_start(struct perf_sample *sample,
David Ahern1424dc92011-03-09 22:23:28 -0700429 struct thread *thread,
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300430 struct perf_evsel *evsel)
David Ahernc70c94b2011-03-09 22:23:25 -0700431{
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300432 struct perf_event_attr *attr = &evsel->attr;
David Ahernc70c94b2011-03-09 22:23:25 -0700433 unsigned long secs;
434 unsigned long usecs;
David Ahern745f43e2011-03-09 22:23:26 -0700435 unsigned long long nsecs;
David Ahernc70c94b2011-03-09 22:23:25 -0700436
David Ahern745f43e2011-03-09 22:23:26 -0700437 if (PRINT_FIELD(COMM)) {
438 if (latency_format)
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +0200439 printf("%8.8s ", thread__comm_str(thread));
David Ahern787bef12011-05-27 14:28:43 -0600440 else if (PRINT_FIELD(IP) && symbol_conf.use_callchain)
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +0200441 printf("%s ", thread__comm_str(thread));
David Ahern745f43e2011-03-09 22:23:26 -0700442 else
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +0200443 printf("%16s ", thread__comm_str(thread));
David Ahern745f43e2011-03-09 22:23:26 -0700444 }
David Ahernc70c94b2011-03-09 22:23:25 -0700445
David Ahern745f43e2011-03-09 22:23:26 -0700446 if (PRINT_FIELD(PID) && PRINT_FIELD(TID))
447 printf("%5d/%-5d ", sample->pid, sample->tid);
448 else if (PRINT_FIELD(PID))
449 printf("%5d ", sample->pid);
450 else if (PRINT_FIELD(TID))
451 printf("%5d ", sample->tid);
David Ahernc70c94b2011-03-09 22:23:25 -0700452
David Ahern745f43e2011-03-09 22:23:26 -0700453 if (PRINT_FIELD(CPU)) {
454 if (latency_format)
455 printf("%3d ", sample->cpu);
456 else
457 printf("[%03d] ", sample->cpu);
458 }
David Ahernc70c94b2011-03-09 22:23:25 -0700459
David Ahern745f43e2011-03-09 22:23:26 -0700460 if (PRINT_FIELD(TIME)) {
461 nsecs = sample->time;
462 secs = nsecs / NSECS_PER_SEC;
463 nsecs -= secs * NSECS_PER_SEC;
464 usecs = nsecs / NSECS_PER_USEC;
Adrian Hunter83e19862015-09-25 16:15:36 +0300465 if (nanosecs)
466 printf("%5lu.%09llu: ", secs, nsecs);
467 else
468 printf("%5lu.%06lu: ", secs, usecs);
David Ahern745f43e2011-03-09 22:23:26 -0700469 }
David Ahernc70c94b2011-03-09 22:23:25 -0700470}
471
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200472static inline char
473mispred_str(struct branch_entry *br)
474{
475 if (!(br->flags.mispred || br->flags.predicted))
476 return '-';
477
478 return br->flags.predicted ? 'P' : 'M';
479}
480
Arnaldo Carvalho de Meloa3dff302016-03-23 11:55:24 -0300481static void print_sample_brstack(struct perf_sample *sample)
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200482{
483 struct branch_stack *br = sample->branch_stack;
484 u64 i;
485
486 if (!(br && br->nr))
487 return;
488
489 for (i = 0; i < br->nr; i++) {
490 printf(" 0x%"PRIx64"/0x%"PRIx64"/%c/%c/%c/%d ",
491 br->entries[i].from,
492 br->entries[i].to,
493 mispred_str( br->entries + i),
494 br->entries[i].flags.in_tx? 'X' : '-',
495 br->entries[i].flags.abort? 'A' : '-',
496 br->entries[i].flags.cycles);
497 }
498}
499
Arnaldo Carvalho de Meloa3dff302016-03-23 11:55:24 -0300500static void print_sample_brstacksym(struct perf_sample *sample,
501 struct thread *thread)
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200502{
503 struct branch_stack *br = sample->branch_stack;
504 struct addr_location alf, alt;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200505 u64 i, from, to;
506
507 if (!(br && br->nr))
508 return;
509
510 for (i = 0; i < br->nr; i++) {
511
512 memset(&alf, 0, sizeof(alf));
513 memset(&alt, 0, sizeof(alt));
514 from = br->entries[i].from;
515 to = br->entries[i].to;
516
Arnaldo Carvalho de Melo473398a2016-03-22 18:23:43 -0300517 thread__find_addr_map(thread, sample->cpumode, MAP__FUNCTION, from, &alf);
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200518 if (alf.map)
519 alf.sym = map__find_symbol(alf.map, alf.addr, NULL);
520
Arnaldo Carvalho de Melo473398a2016-03-22 18:23:43 -0300521 thread__find_addr_map(thread, sample->cpumode, MAP__FUNCTION, to, &alt);
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200522 if (alt.map)
523 alt.sym = map__find_symbol(alt.map, alt.addr, NULL);
524
525 symbol__fprintf_symname_offs(alf.sym, &alf, stdout);
526 putchar('/');
527 symbol__fprintf_symname_offs(alt.sym, &alt, stdout);
528 printf("/%c/%c/%c/%d ",
529 mispred_str( br->entries + i),
530 br->entries[i].flags.in_tx? 'X' : '-',
531 br->entries[i].flags.abort? 'A' : '-',
532 br->entries[i].flags.cycles);
533 }
534}
535
536
Arnaldo Carvalho de Meloa3dff302016-03-23 11:55:24 -0300537static void print_sample_addr(struct perf_sample *sample,
David Ahern7cec0922011-05-30 13:08:23 -0600538 struct thread *thread,
539 struct perf_event_attr *attr)
540{
541 struct addr_location al;
David Ahern7cec0922011-05-30 13:08:23 -0600542
543 printf("%16" PRIx64, sample->addr);
544
545 if (!sample_addr_correlates_sym(attr))
546 return;
547
Arnaldo Carvalho de Meloc2740a82016-03-22 18:44:46 -0300548 thread__resolve(thread, &al, sample);
David Ahern7cec0922011-05-30 13:08:23 -0600549
550 if (PRINT_FIELD(SYM)) {
Akihiro Nagai547a92e2012-01-30 13:42:57 +0900551 printf(" ");
Akihiro Nagaia978f2a2012-01-30 13:43:15 +0900552 if (PRINT_FIELD(SYMOFFSET))
553 symbol__fprintf_symname_offs(al.sym, &al, stdout);
554 else
555 symbol__fprintf_symname(al.sym, stdout);
David Ahern7cec0922011-05-30 13:08:23 -0600556 }
557
558 if (PRINT_FIELD(DSO)) {
Akihiro Nagai547a92e2012-01-30 13:42:57 +0900559 printf(" (");
560 map__fprintf_dsoname(al.map, stdout);
561 printf(")");
David Ahern7cec0922011-05-30 13:08:23 -0600562 }
563}
564
Arnaldo Carvalho de Meloa3dff302016-03-23 11:55:24 -0300565static void print_sample_bts(struct perf_sample *sample,
Akihiro Nagai95582592012-01-30 13:43:09 +0900566 struct perf_evsel *evsel,
Adrian Huntera2cb3cf2013-12-04 16:16:36 +0200567 struct thread *thread,
568 struct addr_location *al)
Akihiro Nagai95582592012-01-30 13:43:09 +0900569{
570 struct perf_event_attr *attr = &evsel->attr;
Adrian Hunter8066be5f2014-07-22 16:17:15 +0300571 bool print_srcline_last = false;
Akihiro Nagai95582592012-01-30 13:43:09 +0900572
573 /* print branch_from information */
574 if (PRINT_FIELD(IP)) {
Adrian Hunter8066be5f2014-07-22 16:17:15 +0300575 unsigned int print_opts = output[attr->type].print_ip_opts;
Chris Phlipote557b672016-04-19 19:32:11 -0700576 struct callchain_cursor *cursor = NULL;
Adrian Hunter8066be5f2014-07-22 16:17:15 +0300577
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -0300578 if (symbol_conf.use_callchain && sample->callchain &&
Chris Phlipote557b672016-04-19 19:32:11 -0700579 thread__resolve_callchain(al->thread, &callchain_cursor, evsel,
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -0300580 sample, NULL, NULL, scripting_max_stack) == 0)
Chris Phlipote557b672016-04-19 19:32:11 -0700581 cursor = &callchain_cursor;
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -0300582
583 if (cursor == NULL) {
584 putchar(' ');
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300585 if (print_opts & EVSEL__PRINT_SRCLINE) {
Adrian Hunter8066be5f2014-07-22 16:17:15 +0300586 print_srcline_last = true;
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300587 print_opts &= ~EVSEL__PRINT_SRCLINE;
Adrian Hunter8066be5f2014-07-22 16:17:15 +0300588 }
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -0300589 } else
590 putchar('\n');
591
592 sample__fprintf_sym(sample, al, 0, print_opts, cursor, stdout);
Akihiro Nagai95582592012-01-30 13:43:09 +0900593 }
594
Akihiro Nagai95582592012-01-30 13:43:09 +0900595 /* print branch_to information */
Adrian Hunter243be3d2013-10-18 15:29:14 +0300596 if (PRINT_FIELD(ADDR) ||
597 ((evsel->attr.sample_type & PERF_SAMPLE_ADDR) &&
Adrian Hunter578bea42014-07-22 16:17:16 +0300598 !output[attr->type].user_set)) {
599 printf(" => ");
Arnaldo Carvalho de Meloa3dff302016-03-23 11:55:24 -0300600 print_sample_addr(sample, thread, attr);
Adrian Hunter578bea42014-07-22 16:17:16 +0300601 }
Akihiro Nagai95582592012-01-30 13:43:09 +0900602
Adrian Hunter8066be5f2014-07-22 16:17:15 +0300603 if (print_srcline_last)
604 map__fprintf_srcline(al->map, al->addr, "\n ", stdout);
605
Akihiro Nagai95582592012-01-30 13:43:09 +0900606 printf("\n");
607}
608
Adrian Hunter055cd332016-06-23 16:40:56 +0300609static struct {
610 u32 flags;
611 const char *name;
612} sample_flags[] = {
613 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL, "call"},
614 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN, "return"},
615 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CONDITIONAL, "jcc"},
616 {PERF_IP_FLAG_BRANCH, "jmp"},
617 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_INTERRUPT, "int"},
618 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | PERF_IP_FLAG_INTERRUPT, "iret"},
619 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_SYSCALLRET, "syscall"},
620 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | PERF_IP_FLAG_SYSCALLRET, "sysret"},
621 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_ASYNC, "async"},
622 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_ASYNC | PERF_IP_FLAG_INTERRUPT, "hw int"},
623 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TX_ABORT, "tx abrt"},
624 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TRACE_BEGIN, "tr strt"},
625 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TRACE_END, "tr end"},
626 {0, NULL}
627};
628
Adrian Hunter400ea6d2015-04-09 18:54:05 +0300629static void print_sample_flags(u32 flags)
630{
631 const char *chars = PERF_IP_FLAG_CHARS;
632 const int n = strlen(PERF_IP_FLAG_CHARS);
Adrian Hunter055cd332016-06-23 16:40:56 +0300633 bool in_tx = flags & PERF_IP_FLAG_IN_TX;
634 const char *name = NULL;
Adrian Hunter400ea6d2015-04-09 18:54:05 +0300635 char str[33];
636 int i, pos = 0;
637
Adrian Hunter055cd332016-06-23 16:40:56 +0300638 for (i = 0; sample_flags[i].name ; i++) {
639 if (sample_flags[i].flags == (flags & ~PERF_IP_FLAG_IN_TX)) {
640 name = sample_flags[i].name;
641 break;
642 }
643 }
644
Adrian Hunter400ea6d2015-04-09 18:54:05 +0300645 for (i = 0; i < n; i++, flags >>= 1) {
646 if (flags & 1)
647 str[pos++] = chars[i];
648 }
649 for (; i < 32; i++, flags >>= 1) {
650 if (flags & 1)
651 str[pos++] = '?';
652 }
653 str[pos] = 0;
Adrian Hunter055cd332016-06-23 16:40:56 +0300654
655 if (name)
656 printf(" %-7s%4s ", name, in_tx ? "(x)" : "");
657 else
658 printf(" %-11s ", str);
Adrian Hunter400ea6d2015-04-09 18:54:05 +0300659}
660
Wang Nan30372f02016-02-24 11:20:45 +0000661struct printer_data {
662 int line_no;
663 bool hit_nul;
664 bool is_printable;
665};
666
667static void
668print_sample_bpf_output_printer(enum binary_printer_ops op,
669 unsigned int val,
670 void *extra)
671{
672 unsigned char ch = (unsigned char)val;
673 struct printer_data *printer_data = extra;
674
675 switch (op) {
676 case BINARY_PRINT_DATA_BEGIN:
677 printf("\n");
678 break;
679 case BINARY_PRINT_LINE_BEGIN:
680 printf("%17s", !printer_data->line_no ? "BPF output:" :
681 " ");
682 break;
683 case BINARY_PRINT_ADDR:
684 printf(" %04x:", val);
685 break;
686 case BINARY_PRINT_NUM_DATA:
687 printf(" %02x", val);
688 break;
689 case BINARY_PRINT_NUM_PAD:
690 printf(" ");
691 break;
692 case BINARY_PRINT_SEP:
693 printf(" ");
694 break;
695 case BINARY_PRINT_CHAR_DATA:
696 if (printer_data->hit_nul && ch)
697 printer_data->is_printable = false;
698
699 if (!isprint(ch)) {
700 printf("%c", '.');
701
702 if (!printer_data->is_printable)
703 break;
704
705 if (ch == '\0')
706 printer_data->hit_nul = true;
707 else
708 printer_data->is_printable = false;
709 } else {
710 printf("%c", ch);
711 }
712 break;
713 case BINARY_PRINT_CHAR_PAD:
714 printf(" ");
715 break;
716 case BINARY_PRINT_LINE_END:
717 printf("\n");
718 printer_data->line_no++;
719 break;
720 case BINARY_PRINT_DATA_END:
721 default:
722 break;
723 }
724}
725
726static void print_sample_bpf_output(struct perf_sample *sample)
727{
728 unsigned int nr_bytes = sample->raw_size;
729 struct printer_data printer_data = {0, false, true};
730
731 print_binary(sample->raw_data, nr_bytes, 8,
732 print_sample_bpf_output_printer, &printer_data);
733
734 if (printer_data.is_printable && printer_data.hit_nul)
735 printf("%17s \"%s\"\n", "BPF string:",
736 (char *)(sample->raw_data));
737}
738
Jiri Olsa809e9422015-11-26 18:55:21 +0100739struct perf_script {
740 struct perf_tool tool;
741 struct perf_session *session;
742 bool show_task_events;
743 bool show_mmap_events;
744 bool show_switch_events;
Jiri Olsacfc88742016-01-05 22:09:06 +0100745 bool allocated;
746 struct cpu_map *cpus;
747 struct thread_map *threads;
Jiri Olsa9cdbc402016-01-07 10:14:05 +0100748 int name_width;
Jiri Olsa809e9422015-11-26 18:55:21 +0100749};
750
Jiri Olsa9cdbc402016-01-07 10:14:05 +0100751static int perf_evlist__max_name_len(struct perf_evlist *evlist)
752{
753 struct perf_evsel *evsel;
754 int max = 0;
755
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300756 evlist__for_each_entry(evlist, evsel) {
Jiri Olsa9cdbc402016-01-07 10:14:05 +0100757 int len = strlen(perf_evsel__name(evsel));
758
759 max = MAX(len, max);
760 }
761
762 return max;
763}
764
Jiri Olsac19ac912016-02-24 09:46:54 +0100765static size_t data_src__printf(u64 data_src)
766{
767 struct mem_info mi = { .data_src.val = data_src };
768 char decode[100];
769 char out[100];
770 static int maxlen;
771 int len;
772
773 perf_script__meminfo_scnprintf(decode, 100, &mi);
774
775 len = scnprintf(out, 100, "%16" PRIx64 " %s", data_src, decode);
776 if (maxlen < len)
777 maxlen = len;
778
779 return printf("%-*s", maxlen, out);
780}
781
Arnaldo Carvalho de Meloa3dff302016-03-23 11:55:24 -0300782static void process_event(struct perf_script *script,
Jiri Olsa809e9422015-11-26 18:55:21 +0100783 struct perf_sample *sample, struct perf_evsel *evsel,
784 struct addr_location *al)
David Ahernbe6d8422011-03-09 22:23:23 -0700785{
Arnaldo Carvalho de Melof9d5d542015-04-01 13:29:25 -0300786 struct thread *thread = al->thread;
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300787 struct perf_event_attr *attr = &evsel->attr;
David Ahern1424dc92011-03-09 22:23:28 -0700788
David Ahern2c9e45f72011-03-17 10:03:21 -0600789 if (output[attr->type].fields == 0)
David Ahern1424dc92011-03-09 22:23:28 -0700790 return;
791
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -0300792 print_sample_start(sample, thread, evsel);
David Ahern745f43e2011-03-09 22:23:26 -0700793
Jiri Olsa535aeaae2014-08-25 16:45:42 +0200794 if (PRINT_FIELD(PERIOD))
795 printf("%10" PRIu64 " ", sample->period);
796
Namhyung Kime944d3d2013-11-18 14:34:52 +0900797 if (PRINT_FIELD(EVNAME)) {
798 const char *evname = perf_evsel__name(evsel);
Jiri Olsa9cdbc402016-01-07 10:14:05 +0100799
800 if (!script->name_width)
801 script->name_width = perf_evlist__max_name_len(script->session->evlist);
802
803 printf("%*s: ", script->name_width,
804 evname ? evname : "[unknown]");
Namhyung Kime944d3d2013-11-18 14:34:52 +0900805 }
806
Adrian Hunter400ea6d2015-04-09 18:54:05 +0300807 if (print_flags)
808 print_sample_flags(sample->flags);
809
Akihiro Nagai95582592012-01-30 13:43:09 +0900810 if (is_bts_event(attr)) {
Arnaldo Carvalho de Meloa3dff302016-03-23 11:55:24 -0300811 print_sample_bts(sample, evsel, thread, al);
Akihiro Nagai95582592012-01-30 13:43:09 +0900812 return;
813 }
814
David Ahern745f43e2011-03-09 22:23:26 -0700815 if (PRINT_FIELD(TRACE))
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -0300816 event_format__print(evsel->tp_format, sample->cpu,
817 sample->raw_data, sample->raw_size);
David Ahern7cec0922011-05-30 13:08:23 -0600818 if (PRINT_FIELD(ADDR))
Arnaldo Carvalho de Meloa3dff302016-03-23 11:55:24 -0300819 print_sample_addr(sample, thread, attr);
David Ahern7cec0922011-05-30 13:08:23 -0600820
Jiri Olsa94ddddf2016-02-15 09:34:51 +0100821 if (PRINT_FIELD(DATA_SRC))
Jiri Olsac19ac912016-02-24 09:46:54 +0100822 data_src__printf(sample->data_src);
Jiri Olsa94ddddf2016-02-15 09:34:51 +0100823
824 if (PRINT_FIELD(WEIGHT))
825 printf("%16" PRIu64, sample->weight);
826
David Ahern787bef12011-05-27 14:28:43 -0600827 if (PRINT_FIELD(IP)) {
Chris Phlipote557b672016-04-19 19:32:11 -0700828 struct callchain_cursor *cursor = NULL;
David Aherna6ffaf92013-08-07 22:50:51 -0400829
Arnaldo Carvalho de Melo92231522016-04-18 11:31:46 -0300830 if (symbol_conf.use_callchain && sample->callchain &&
Chris Phlipote557b672016-04-19 19:32:11 -0700831 thread__resolve_callchain(al->thread, &callchain_cursor, evsel,
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -0300832 sample, NULL, NULL, scripting_max_stack) == 0)
Chris Phlipote557b672016-04-19 19:32:11 -0700833 cursor = &callchain_cursor;
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -0300834
835 putchar(cursor ? '\n' : ' ');
836 sample__fprintf_sym(sample, al, 0, output[attr->type].print_ip_opts, cursor, stdout);
David Ahernc0230b22011-03-09 22:23:27 -0700837 }
838
Stephane Eranianfc36f942015-08-31 18:41:10 +0200839 if (PRINT_FIELD(IREGS))
Arnaldo Carvalho de Meloa3dff302016-03-23 11:55:24 -0300840 print_sample_iregs(sample, attr);
Stephane Eranianfc36f942015-08-31 18:41:10 +0200841
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200842 if (PRINT_FIELD(BRSTACK))
Arnaldo Carvalho de Meloa3dff302016-03-23 11:55:24 -0300843 print_sample_brstack(sample);
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200844 else if (PRINT_FIELD(BRSTACKSYM))
Arnaldo Carvalho de Meloa3dff302016-03-23 11:55:24 -0300845 print_sample_brstacksym(sample, thread);
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200846
Wang Nan30372f02016-02-24 11:20:45 +0000847 if (perf_evsel__is_bpf_output(evsel) && PRINT_FIELD(BPF_OUTPUT))
848 print_sample_bpf_output(sample);
849
David Ahernc70c94b2011-03-09 22:23:25 -0700850 printf("\n");
David Ahernbe6d8422011-03-09 22:23:23 -0700851}
852
Tom Zanussi956ffd02009-11-25 01:15:46 -0600853static struct scripting_ops *scripting_ops;
854
Jiri Olsa36e33c52016-01-06 11:49:56 +0100855static void __process_stat(struct perf_evsel *counter, u64 tstamp)
856{
857 int nthreads = thread_map__nr(counter->threads);
858 int ncpus = perf_evsel__nr_cpus(counter);
859 int cpu, thread;
860 static int header_printed;
861
862 if (counter->system_wide)
863 nthreads = 1;
864
865 if (!header_printed) {
866 printf("%3s %8s %15s %15s %15s %15s %s\n",
867 "CPU", "THREAD", "VAL", "ENA", "RUN", "TIME", "EVENT");
868 header_printed = 1;
869 }
870
871 for (thread = 0; thread < nthreads; thread++) {
872 for (cpu = 0; cpu < ncpus; cpu++) {
873 struct perf_counts_values *counts;
874
875 counts = perf_counts(counter->counts, cpu, thread);
876
877 printf("%3d %8d %15" PRIu64 " %15" PRIu64 " %15" PRIu64 " %15" PRIu64 " %s\n",
878 counter->cpus->map[cpu],
879 thread_map__pid(counter->threads, thread),
880 counts->val,
881 counts->ena,
882 counts->run,
883 tstamp,
884 perf_evsel__name(counter));
885 }
886 }
887}
888
Jiri Olsae099eba2016-01-05 22:09:09 +0100889static void process_stat(struct perf_evsel *counter, u64 tstamp)
890{
891 if (scripting_ops && scripting_ops->process_stat)
892 scripting_ops->process_stat(&stat_config, counter, tstamp);
Jiri Olsa36e33c52016-01-06 11:49:56 +0100893 else
894 __process_stat(counter, tstamp);
Jiri Olsae099eba2016-01-05 22:09:09 +0100895}
896
897static void process_stat_interval(u64 tstamp)
898{
899 if (scripting_ops && scripting_ops->process_stat_interval)
900 scripting_ops->process_stat_interval(tstamp);
901}
902
Tom Zanussi956ffd02009-11-25 01:15:46 -0600903static void setup_scripting(void)
904{
Tom Zanussi16c632d2009-11-25 01:15:48 -0600905 setup_perl_scripting();
Tom Zanussi7e4b21b2010-01-27 02:27:57 -0600906 setup_python_scripting();
Tom Zanussi956ffd02009-11-25 01:15:46 -0600907}
908
Adrian Hunterd445dd22014-08-15 22:08:37 +0300909static int flush_scripting(void)
910{
Jiri Olsa2aaecfc2015-11-26 14:55:23 +0100911 return scripting_ops ? scripting_ops->flush_script() : 0;
Adrian Hunterd445dd22014-08-15 22:08:37 +0300912}
913
Tom Zanussi956ffd02009-11-25 01:15:46 -0600914static int cleanup_scripting(void)
915{
Ingo Molnar133dc4c2010-11-16 18:45:39 +0100916 pr_debug("\nperf script stopped\n");
Tom Zanussi3824a4e2010-05-09 23:46:57 -0500917
Jiri Olsa2aaecfc2015-11-26 14:55:23 +0100918 return scripting_ops ? scripting_ops->stop_script() : 0;
Tom Zanussi956ffd02009-11-25 01:15:46 -0600919}
920
Jiri Olsa809e9422015-11-26 18:55:21 +0100921static int process_sample_event(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200922 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200923 struct perf_sample *sample,
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300924 struct perf_evsel *evsel,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200925 struct machine *machine)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200926{
Jiri Olsa809e9422015-11-26 18:55:21 +0100927 struct perf_script *scr = container_of(tool, struct perf_script, tool);
David Aherne7984b72011-11-21 10:02:52 -0700928 struct addr_location al;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200929
David Ahern1424dc92011-03-09 22:23:28 -0700930 if (debug_mode) {
931 if (sample->time < last_timestamp) {
932 pr_err("Samples misordered, previous: %" PRIu64
933 " this: %" PRIu64 "\n", last_timestamp,
934 sample->time);
935 nr_unordered++;
Frederic Weisbeckere1889d72010-04-24 01:55:09 +0200936 }
David Ahern1424dc92011-03-09 22:23:28 -0700937 last_timestamp = sample->time;
938 return 0;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200939 }
Anton Blanchard5d67be92011-07-04 21:57:50 +1000940
Arnaldo Carvalho de Melobb3eb562016-03-22 18:39:09 -0300941 if (machine__resolve(machine, &al, sample) < 0) {
David Aherne7984b72011-11-21 10:02:52 -0700942 pr_err("problem processing %d event, skipping it.\n",
943 event->header.type);
944 return -1;
945 }
946
947 if (al.filtered)
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300948 goto out_put;
David Aherne7984b72011-11-21 10:02:52 -0700949
Anton Blanchard5d67be92011-07-04 21:57:50 +1000950 if (cpu_list && !test_bit(sample->cpu, cpu_bitmap))
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300951 goto out_put;
Anton Blanchard5d67be92011-07-04 21:57:50 +1000952
Jiri Olsa2aaecfc2015-11-26 14:55:23 +0100953 if (scripting_ops)
954 scripting_ops->process_event(event, sample, evsel, &al);
955 else
Arnaldo Carvalho de Meloa3dff302016-03-23 11:55:24 -0300956 process_event(scr, sample, evsel, &al);
Jiri Olsa2aaecfc2015-11-26 14:55:23 +0100957
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300958out_put:
959 addr_location__put(&al);
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200960 return 0;
961}
962
Adrian Hunter7ea95722013-11-01 15:51:30 +0200963static int process_attr(struct perf_tool *tool, union perf_event *event,
964 struct perf_evlist **pevlist)
965{
966 struct perf_script *scr = container_of(tool, struct perf_script, tool);
967 struct perf_evlist *evlist;
968 struct perf_evsel *evsel, *pos;
969 int err;
970
971 err = perf_event__process_attr(tool, event, pevlist);
972 if (err)
973 return err;
974
975 evlist = *pevlist;
976 evsel = perf_evlist__last(*pevlist);
977
978 if (evsel->attr.type >= PERF_TYPE_MAX)
979 return 0;
980
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300981 evlist__for_each_entry(evlist, pos) {
Adrian Hunter7ea95722013-11-01 15:51:30 +0200982 if (pos->attr.type == evsel->attr.type && pos != evsel)
983 return 0;
984 }
985
986 set_print_ip_opts(&evsel->attr);
987
Jiri Olsad2b5a312015-10-16 12:41:25 +0200988 if (evsel->attr.sample_type)
989 err = perf_evsel__check_attr(evsel, scr->session);
990
991 return err;
Adrian Hunter7ea95722013-11-01 15:51:30 +0200992}
993
Namhyung Kimad7ebb92013-11-26 17:51:12 +0900994static int process_comm_event(struct perf_tool *tool,
995 union perf_event *event,
996 struct perf_sample *sample,
997 struct machine *machine)
998{
999 struct thread *thread;
1000 struct perf_script *script = container_of(tool, struct perf_script, tool);
1001 struct perf_session *session = script->session;
Adrian Hunter06b234e2015-07-21 12:44:05 +03001002 struct perf_evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001003 int ret = -1;
1004
1005 thread = machine__findnew_thread(machine, event->comm.pid, event->comm.tid);
1006 if (thread == NULL) {
1007 pr_debug("problem processing COMM event, skipping it.\n");
1008 return -1;
1009 }
1010
1011 if (perf_event__process_comm(tool, event, sample, machine) < 0)
1012 goto out;
1013
1014 if (!evsel->attr.sample_id_all) {
1015 sample->cpu = 0;
1016 sample->time = 0;
1017 sample->tid = event->comm.tid;
1018 sample->pid = event->comm.pid;
1019 }
1020 print_sample_start(sample, thread, evsel);
1021 perf_event__fprintf(event, stdout);
1022 ret = 0;
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001023out:
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001024 thread__put(thread);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001025 return ret;
1026}
1027
1028static int process_fork_event(struct perf_tool *tool,
1029 union perf_event *event,
1030 struct perf_sample *sample,
1031 struct machine *machine)
1032{
1033 struct thread *thread;
1034 struct perf_script *script = container_of(tool, struct perf_script, tool);
1035 struct perf_session *session = script->session;
Adrian Hunter06b234e2015-07-21 12:44:05 +03001036 struct perf_evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001037
1038 if (perf_event__process_fork(tool, event, sample, machine) < 0)
1039 return -1;
1040
1041 thread = machine__findnew_thread(machine, event->fork.pid, event->fork.tid);
1042 if (thread == NULL) {
1043 pr_debug("problem processing FORK event, skipping it.\n");
1044 return -1;
1045 }
1046
1047 if (!evsel->attr.sample_id_all) {
1048 sample->cpu = 0;
1049 sample->time = event->fork.time;
1050 sample->tid = event->fork.tid;
1051 sample->pid = event->fork.pid;
1052 }
1053 print_sample_start(sample, thread, evsel);
1054 perf_event__fprintf(event, stdout);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001055 thread__put(thread);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001056
1057 return 0;
1058}
1059static int process_exit_event(struct perf_tool *tool,
1060 union perf_event *event,
1061 struct perf_sample *sample,
1062 struct machine *machine)
1063{
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001064 int err = 0;
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001065 struct thread *thread;
1066 struct perf_script *script = container_of(tool, struct perf_script, tool);
1067 struct perf_session *session = script->session;
Adrian Hunter06b234e2015-07-21 12:44:05 +03001068 struct perf_evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001069
1070 thread = machine__findnew_thread(machine, event->fork.pid, event->fork.tid);
1071 if (thread == NULL) {
1072 pr_debug("problem processing EXIT event, skipping it.\n");
1073 return -1;
1074 }
1075
1076 if (!evsel->attr.sample_id_all) {
1077 sample->cpu = 0;
1078 sample->time = 0;
Adrian Hunter53ff6bc2015-08-18 12:07:05 +03001079 sample->tid = event->fork.tid;
1080 sample->pid = event->fork.pid;
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001081 }
1082 print_sample_start(sample, thread, evsel);
1083 perf_event__fprintf(event, stdout);
1084
1085 if (perf_event__process_exit(tool, event, sample, machine) < 0)
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001086 err = -1;
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001087
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001088 thread__put(thread);
1089 return err;
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001090}
1091
Namhyung Kimba1ddf42013-11-26 17:54:26 +09001092static int process_mmap_event(struct perf_tool *tool,
1093 union perf_event *event,
1094 struct perf_sample *sample,
1095 struct machine *machine)
1096{
1097 struct thread *thread;
1098 struct perf_script *script = container_of(tool, struct perf_script, tool);
1099 struct perf_session *session = script->session;
Adrian Hunter06b234e2015-07-21 12:44:05 +03001100 struct perf_evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
Namhyung Kimba1ddf42013-11-26 17:54:26 +09001101
1102 if (perf_event__process_mmap(tool, event, sample, machine) < 0)
1103 return -1;
1104
1105 thread = machine__findnew_thread(machine, event->mmap.pid, event->mmap.tid);
1106 if (thread == NULL) {
1107 pr_debug("problem processing MMAP event, skipping it.\n");
1108 return -1;
1109 }
1110
1111 if (!evsel->attr.sample_id_all) {
1112 sample->cpu = 0;
1113 sample->time = 0;
1114 sample->tid = event->mmap.tid;
1115 sample->pid = event->mmap.pid;
1116 }
1117 print_sample_start(sample, thread, evsel);
1118 perf_event__fprintf(event, stdout);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001119 thread__put(thread);
Namhyung Kimba1ddf42013-11-26 17:54:26 +09001120 return 0;
1121}
1122
1123static int process_mmap2_event(struct perf_tool *tool,
1124 union perf_event *event,
1125 struct perf_sample *sample,
1126 struct machine *machine)
1127{
1128 struct thread *thread;
1129 struct perf_script *script = container_of(tool, struct perf_script, tool);
1130 struct perf_session *session = script->session;
Adrian Hunter06b234e2015-07-21 12:44:05 +03001131 struct perf_evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
Namhyung Kimba1ddf42013-11-26 17:54:26 +09001132
1133 if (perf_event__process_mmap2(tool, event, sample, machine) < 0)
1134 return -1;
1135
1136 thread = machine__findnew_thread(machine, event->mmap2.pid, event->mmap2.tid);
1137 if (thread == NULL) {
1138 pr_debug("problem processing MMAP2 event, skipping it.\n");
1139 return -1;
1140 }
1141
1142 if (!evsel->attr.sample_id_all) {
1143 sample->cpu = 0;
1144 sample->time = 0;
1145 sample->tid = event->mmap2.tid;
1146 sample->pid = event->mmap2.pid;
1147 }
1148 print_sample_start(sample, thread, evsel);
1149 perf_event__fprintf(event, stdout);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001150 thread__put(thread);
Namhyung Kimba1ddf42013-11-26 17:54:26 +09001151 return 0;
1152}
1153
Adrian Hunter7c148982015-07-21 12:44:06 +03001154static int process_switch_event(struct perf_tool *tool,
1155 union perf_event *event,
1156 struct perf_sample *sample,
1157 struct machine *machine)
1158{
1159 struct thread *thread;
1160 struct perf_script *script = container_of(tool, struct perf_script, tool);
1161 struct perf_session *session = script->session;
1162 struct perf_evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
1163
1164 if (perf_event__process_switch(tool, event, sample, machine) < 0)
1165 return -1;
1166
1167 thread = machine__findnew_thread(machine, sample->pid,
1168 sample->tid);
1169 if (thread == NULL) {
1170 pr_debug("problem processing SWITCH event, skipping it.\n");
1171 return -1;
1172 }
1173
1174 print_sample_start(sample, thread, evsel);
1175 perf_event__fprintf(event, stdout);
1176 thread__put(thread);
1177 return 0;
1178}
1179
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001180static void sig_handler(int sig __maybe_unused)
Tom Zanussic239da32010-04-01 23:59:18 -05001181{
1182 session_done = 1;
1183}
1184
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03001185static int __cmd_script(struct perf_script *script)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001186{
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +02001187 int ret;
1188
Tom Zanussic239da32010-04-01 23:59:18 -05001189 signal(SIGINT, sig_handler);
1190
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001191 /* override event processing functions */
1192 if (script->show_task_events) {
1193 script->tool.comm = process_comm_event;
1194 script->tool.fork = process_fork_event;
1195 script->tool.exit = process_exit_event;
1196 }
Namhyung Kimba1ddf42013-11-26 17:54:26 +09001197 if (script->show_mmap_events) {
1198 script->tool.mmap = process_mmap_event;
1199 script->tool.mmap2 = process_mmap2_event;
1200 }
Adrian Hunter7c148982015-07-21 12:44:06 +03001201 if (script->show_switch_events)
1202 script->tool.context_switch = process_switch_event;
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001203
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -03001204 ret = perf_session__process_events(script->session);
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +02001205
Arnaldo Carvalho de Melo6d8afb52011-01-04 16:27:30 -02001206 if (debug_mode)
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -02001207 pr_err("Misordered timestamps: %" PRIu64 "\n", nr_unordered);
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +02001208
1209 return ret;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001210}
1211
Tom Zanussi956ffd02009-11-25 01:15:46 -06001212struct script_spec {
1213 struct list_head node;
1214 struct scripting_ops *ops;
1215 char spec[0];
1216};
1217
Arnaldo Carvalho de Meloeccdfe22011-01-04 16:32:52 -02001218static LIST_HEAD(script_specs);
Tom Zanussi956ffd02009-11-25 01:15:46 -06001219
1220static struct script_spec *script_spec__new(const char *spec,
1221 struct scripting_ops *ops)
1222{
1223 struct script_spec *s = malloc(sizeof(*s) + strlen(spec) + 1);
1224
1225 if (s != NULL) {
1226 strcpy(s->spec, spec);
1227 s->ops = ops;
1228 }
1229
1230 return s;
1231}
1232
Tom Zanussi956ffd02009-11-25 01:15:46 -06001233static void script_spec__add(struct script_spec *s)
1234{
1235 list_add_tail(&s->node, &script_specs);
1236}
1237
1238static struct script_spec *script_spec__find(const char *spec)
1239{
1240 struct script_spec *s;
1241
1242 list_for_each_entry(s, &script_specs, node)
1243 if (strcasecmp(s->spec, spec) == 0)
1244 return s;
1245 return NULL;
1246}
1247
Tom Zanussi956ffd02009-11-25 01:15:46 -06001248int script_spec_register(const char *spec, struct scripting_ops *ops)
1249{
1250 struct script_spec *s;
1251
1252 s = script_spec__find(spec);
1253 if (s)
1254 return -1;
1255
Taeung Song8560bae2016-02-26 00:13:10 +09001256 s = script_spec__new(spec, ops);
Tom Zanussi956ffd02009-11-25 01:15:46 -06001257 if (!s)
1258 return -1;
Taeung Song8560bae2016-02-26 00:13:10 +09001259 else
1260 script_spec__add(s);
Tom Zanussi956ffd02009-11-25 01:15:46 -06001261
1262 return 0;
1263}
1264
1265static struct scripting_ops *script_spec__lookup(const char *spec)
1266{
1267 struct script_spec *s = script_spec__find(spec);
1268 if (!s)
1269 return NULL;
1270
1271 return s->ops;
1272}
1273
1274static void list_available_languages(void)
1275{
1276 struct script_spec *s;
1277
1278 fprintf(stderr, "\n");
1279 fprintf(stderr, "Scripting language extensions (used in "
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001280 "perf script -s [spec:]script.[spec]):\n\n");
Tom Zanussi956ffd02009-11-25 01:15:46 -06001281
1282 list_for_each_entry(s, &script_specs, node)
1283 fprintf(stderr, " %-42s [%s]\n", s->spec, s->ops->name);
1284
1285 fprintf(stderr, "\n");
1286}
1287
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001288static int parse_scriptname(const struct option *opt __maybe_unused,
1289 const char *str, int unset __maybe_unused)
Tom Zanussi956ffd02009-11-25 01:15:46 -06001290{
1291 char spec[PATH_MAX];
1292 const char *script, *ext;
1293 int len;
1294
Tom Zanussif526d682010-01-27 02:27:52 -06001295 if (strcmp(str, "lang") == 0) {
Tom Zanussi956ffd02009-11-25 01:15:46 -06001296 list_available_languages();
Tom Zanussif526d682010-01-27 02:27:52 -06001297 exit(0);
Tom Zanussi956ffd02009-11-25 01:15:46 -06001298 }
1299
1300 script = strchr(str, ':');
1301 if (script) {
1302 len = script - str;
1303 if (len >= PATH_MAX) {
1304 fprintf(stderr, "invalid language specifier");
1305 return -1;
1306 }
1307 strncpy(spec, str, len);
1308 spec[len] = '\0';
1309 scripting_ops = script_spec__lookup(spec);
1310 if (!scripting_ops) {
1311 fprintf(stderr, "invalid language specifier");
1312 return -1;
1313 }
1314 script++;
1315 } else {
1316 script = str;
Ben Hutchingsd1e95bb2010-10-10 16:11:02 +01001317 ext = strrchr(script, '.');
Tom Zanussi956ffd02009-11-25 01:15:46 -06001318 if (!ext) {
1319 fprintf(stderr, "invalid script extension");
1320 return -1;
1321 }
1322 scripting_ops = script_spec__lookup(++ext);
1323 if (!scripting_ops) {
1324 fprintf(stderr, "invalid script extension");
1325 return -1;
1326 }
1327 }
1328
1329 script_name = strdup(script);
1330
1331 return 0;
1332}
1333
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001334static int parse_output_fields(const struct option *opt __maybe_unused,
1335 const char *arg, int unset __maybe_unused)
David Ahern745f43e2011-03-09 22:23:26 -07001336{
1337 char *tok;
Sasha Levin50ca19a2012-12-20 14:11:19 -05001338 int i, imax = ARRAY_SIZE(all_output_options);
David Ahern2c9e45f72011-03-17 10:03:21 -06001339 int j;
David Ahern745f43e2011-03-09 22:23:26 -07001340 int rc = 0;
1341 char *str = strdup(arg);
David Ahern1424dc92011-03-09 22:23:28 -07001342 int type = -1;
David Ahern745f43e2011-03-09 22:23:26 -07001343
1344 if (!str)
1345 return -ENOMEM;
1346
David Ahern2c9e45f72011-03-17 10:03:21 -06001347 /* first word can state for which event type the user is specifying
1348 * the fields. If no type exists, the specified fields apply to all
1349 * event types found in the file minus the invalid fields for a type.
David Ahern1424dc92011-03-09 22:23:28 -07001350 */
David Ahern2c9e45f72011-03-17 10:03:21 -06001351 tok = strchr(str, ':');
1352 if (tok) {
1353 *tok = '\0';
1354 tok++;
1355 if (!strcmp(str, "hw"))
1356 type = PERF_TYPE_HARDWARE;
1357 else if (!strcmp(str, "sw"))
1358 type = PERF_TYPE_SOFTWARE;
1359 else if (!strcmp(str, "trace"))
1360 type = PERF_TYPE_TRACEPOINT;
Arun Sharma0817a6a2011-04-14 10:38:18 -07001361 else if (!strcmp(str, "raw"))
1362 type = PERF_TYPE_RAW;
Wang Nan27cfef02015-12-08 02:25:43 +00001363 else if (!strcmp(str, "break"))
1364 type = PERF_TYPE_BREAKPOINT;
David Ahern2c9e45f72011-03-17 10:03:21 -06001365 else {
1366 fprintf(stderr, "Invalid event type in field string.\n");
Robert Richter38efb532011-11-25 11:38:40 +01001367 rc = -EINVAL;
1368 goto out;
David Ahern2c9e45f72011-03-17 10:03:21 -06001369 }
1370
1371 if (output[type].user_set)
1372 pr_warning("Overriding previous field request for %s events.\n",
1373 event_type(type));
1374
1375 output[type].fields = 0;
1376 output[type].user_set = true;
David Ahern9cbdb702011-04-06 21:54:20 -06001377 output[type].wildcard_set = false;
David Ahern2c9e45f72011-03-17 10:03:21 -06001378
1379 } else {
1380 tok = str;
1381 if (strlen(str) == 0) {
1382 fprintf(stderr,
1383 "Cannot set fields to 'none' for all event types.\n");
1384 rc = -EINVAL;
1385 goto out;
1386 }
1387
1388 if (output_set_by_user())
1389 pr_warning("Overriding previous field request for all events.\n");
1390
1391 for (j = 0; j < PERF_TYPE_MAX; ++j) {
1392 output[j].fields = 0;
1393 output[j].user_set = true;
David Ahern9cbdb702011-04-06 21:54:20 -06001394 output[j].wildcard_set = true;
David Ahern2c9e45f72011-03-17 10:03:21 -06001395 }
David Ahern1424dc92011-03-09 22:23:28 -07001396 }
1397
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001398 for (tok = strtok(tok, ","); tok; tok = strtok(NULL, ",")) {
David Ahern745f43e2011-03-09 22:23:26 -07001399 for (i = 0; i < imax; ++i) {
David Ahern2c9e45f72011-03-17 10:03:21 -06001400 if (strcmp(tok, all_output_options[i].str) == 0)
David Ahern745f43e2011-03-09 22:23:26 -07001401 break;
David Ahern745f43e2011-03-09 22:23:26 -07001402 }
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001403 if (i == imax && strcmp(tok, "flags") == 0) {
1404 print_flags = true;
1405 continue;
1406 }
David Ahern745f43e2011-03-09 22:23:26 -07001407 if (i == imax) {
David Ahern2c9e45f72011-03-17 10:03:21 -06001408 fprintf(stderr, "Invalid field requested.\n");
David Ahern745f43e2011-03-09 22:23:26 -07001409 rc = -EINVAL;
David Ahern2c9e45f72011-03-17 10:03:21 -06001410 goto out;
1411 }
1412
1413 if (type == -1) {
1414 /* add user option to all events types for
1415 * which it is valid
1416 */
1417 for (j = 0; j < PERF_TYPE_MAX; ++j) {
1418 if (output[j].invalid_fields & all_output_options[i].field) {
1419 pr_warning("\'%s\' not valid for %s events. Ignoring.\n",
1420 all_output_options[i].str, event_type(j));
1421 } else
1422 output[j].fields |= all_output_options[i].field;
1423 }
1424 } else {
1425 if (output[type].invalid_fields & all_output_options[i].field) {
1426 fprintf(stderr, "\'%s\' not valid for %s events.\n",
1427 all_output_options[i].str, event_type(type));
1428
1429 rc = -EINVAL;
1430 goto out;
1431 }
1432 output[type].fields |= all_output_options[i].field;
1433 }
David Ahern2c9e45f72011-03-17 10:03:21 -06001434 }
1435
1436 if (type >= 0) {
1437 if (output[type].fields == 0) {
1438 pr_debug("No fields requested for %s type. "
1439 "Events will not be displayed.\n", event_type(type));
David Ahern745f43e2011-03-09 22:23:26 -07001440 }
David Ahern1424dc92011-03-09 22:23:28 -07001441 }
David Ahern745f43e2011-03-09 22:23:26 -07001442
David Ahern2c9e45f72011-03-17 10:03:21 -06001443out:
David Ahern745f43e2011-03-09 22:23:26 -07001444 free(str);
1445 return rc;
1446}
1447
Shawn Bohrer008f29d2010-11-21 10:09:39 -06001448/* Helper function for filesystems that return a dent->d_type DT_UNKNOWN */
1449static int is_directory(const char *base_path, const struct dirent *dent)
1450{
1451 char path[PATH_MAX];
1452 struct stat st;
1453
1454 sprintf(path, "%s/%s", base_path, dent->d_name);
1455 if (stat(path, &st))
1456 return 0;
1457
1458 return S_ISDIR(st.st_mode);
1459}
1460
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001461#define for_each_lang(scripts_path, scripts_dir, lang_dirent) \
1462 while ((lang_dirent = readdir(scripts_dir)) != NULL) \
1463 if ((lang_dirent->d_type == DT_DIR || \
1464 (lang_dirent->d_type == DT_UNKNOWN && \
1465 is_directory(scripts_path, lang_dirent))) && \
1466 (strcmp(lang_dirent->d_name, ".")) && \
1467 (strcmp(lang_dirent->d_name, "..")))
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001468
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001469#define for_each_script(lang_path, lang_dir, script_dirent) \
1470 while ((script_dirent = readdir(lang_dir)) != NULL) \
1471 if (script_dirent->d_type != DT_DIR && \
1472 (script_dirent->d_type != DT_UNKNOWN || \
1473 !is_directory(lang_path, script_dirent)))
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001474
1475
1476#define RECORD_SUFFIX "-record"
1477#define REPORT_SUFFIX "-report"
1478
1479struct script_desc {
1480 struct list_head node;
1481 char *name;
1482 char *half_liner;
1483 char *args;
1484};
1485
Arnaldo Carvalho de Meloeccdfe22011-01-04 16:32:52 -02001486static LIST_HEAD(script_descs);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001487
1488static struct script_desc *script_desc__new(const char *name)
1489{
1490 struct script_desc *s = zalloc(sizeof(*s));
1491
Tom Zanussib5b87312010-11-10 08:16:51 -06001492 if (s != NULL && name)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001493 s->name = strdup(name);
1494
1495 return s;
1496}
1497
1498static void script_desc__delete(struct script_desc *s)
1499{
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -03001500 zfree(&s->name);
1501 zfree(&s->half_liner);
1502 zfree(&s->args);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001503 free(s);
1504}
1505
1506static void script_desc__add(struct script_desc *s)
1507{
1508 list_add_tail(&s->node, &script_descs);
1509}
1510
1511static struct script_desc *script_desc__find(const char *name)
1512{
1513 struct script_desc *s;
1514
1515 list_for_each_entry(s, &script_descs, node)
1516 if (strcasecmp(s->name, name) == 0)
1517 return s;
1518 return NULL;
1519}
1520
1521static struct script_desc *script_desc__findnew(const char *name)
1522{
1523 struct script_desc *s = script_desc__find(name);
1524
1525 if (s)
1526 return s;
1527
1528 s = script_desc__new(name);
1529 if (!s)
1530 goto out_delete_desc;
1531
1532 script_desc__add(s);
1533
1534 return s;
1535
1536out_delete_desc:
1537 script_desc__delete(s);
1538
1539 return NULL;
1540}
1541
Stephane Eranian965bb6b2010-12-03 17:52:01 +02001542static const char *ends_with(const char *str, const char *suffix)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001543{
1544 size_t suffix_len = strlen(suffix);
Stephane Eranian965bb6b2010-12-03 17:52:01 +02001545 const char *p = str;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001546
1547 if (strlen(str) > suffix_len) {
1548 p = str + strlen(str) - suffix_len;
1549 if (!strncmp(p, suffix, suffix_len))
1550 return p;
1551 }
1552
1553 return NULL;
1554}
1555
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001556static int read_script_info(struct script_desc *desc, const char *filename)
1557{
1558 char line[BUFSIZ], *p;
1559 FILE *fp;
1560
1561 fp = fopen(filename, "r");
1562 if (!fp)
1563 return -1;
1564
1565 while (fgets(line, sizeof(line), fp)) {
1566 p = ltrim(line);
1567 if (strlen(p) == 0)
1568 continue;
1569 if (*p != '#')
1570 continue;
1571 p++;
1572 if (strlen(p) && *p == '!')
1573 continue;
1574
1575 p = ltrim(p);
1576 if (strlen(p) && p[strlen(p) - 1] == '\n')
1577 p[strlen(p) - 1] = '\0';
1578
1579 if (!strncmp(p, "description:", strlen("description:"))) {
1580 p += strlen("description:");
1581 desc->half_liner = strdup(ltrim(p));
1582 continue;
1583 }
1584
1585 if (!strncmp(p, "args:", strlen("args:"))) {
1586 p += strlen("args:");
1587 desc->args = strdup(ltrim(p));
1588 continue;
1589 }
1590 }
1591
1592 fclose(fp);
1593
1594 return 0;
1595}
1596
Robert Richter38efb532011-11-25 11:38:40 +01001597static char *get_script_root(struct dirent *script_dirent, const char *suffix)
1598{
1599 char *script_root, *str;
1600
1601 script_root = strdup(script_dirent->d_name);
1602 if (!script_root)
1603 return NULL;
1604
1605 str = (char *)ends_with(script_root, suffix);
1606 if (!str) {
1607 free(script_root);
1608 return NULL;
1609 }
1610
1611 *str = '\0';
1612 return script_root;
1613}
1614
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001615static int list_available_scripts(const struct option *opt __maybe_unused,
1616 const char *s __maybe_unused,
1617 int unset __maybe_unused)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001618{
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001619 struct dirent *script_dirent, *lang_dirent;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001620 char scripts_path[MAXPATHLEN];
1621 DIR *scripts_dir, *lang_dir;
1622 char script_path[MAXPATHLEN];
1623 char lang_path[MAXPATHLEN];
1624 struct script_desc *desc;
1625 char first_half[BUFSIZ];
1626 char *script_root;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001627
Josh Poimboeuf46113a52015-12-15 09:39:37 -06001628 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", get_argv_exec_path());
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001629
1630 scripts_dir = opendir(scripts_path);
1631 if (!scripts_dir)
1632 return -1;
1633
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001634 for_each_lang(scripts_path, scripts_dir, lang_dirent) {
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001635 snprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path,
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001636 lang_dirent->d_name);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001637 lang_dir = opendir(lang_path);
1638 if (!lang_dir)
1639 continue;
1640
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001641 for_each_script(lang_path, lang_dir, script_dirent) {
1642 script_root = get_script_root(script_dirent, REPORT_SUFFIX);
Robert Richter38efb532011-11-25 11:38:40 +01001643 if (script_root) {
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001644 desc = script_desc__findnew(script_root);
1645 snprintf(script_path, MAXPATHLEN, "%s/%s",
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001646 lang_path, script_dirent->d_name);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001647 read_script_info(desc, script_path);
Robert Richter38efb532011-11-25 11:38:40 +01001648 free(script_root);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001649 }
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001650 }
1651 }
1652
1653 fprintf(stdout, "List of available trace scripts:\n");
1654 list_for_each_entry(desc, &script_descs, node) {
1655 sprintf(first_half, "%s %s", desc->name,
1656 desc->args ? desc->args : "");
1657 fprintf(stdout, " %-36s %s\n", first_half,
1658 desc->half_liner ? desc->half_liner : "");
1659 }
1660
1661 exit(0);
1662}
1663
Feng Tange5f37052012-09-07 16:42:26 +08001664/*
Feng Tang49e639e2012-10-30 11:56:03 +08001665 * Some scripts specify the required events in their "xxx-record" file,
1666 * this function will check if the events in perf.data match those
1667 * mentioned in the "xxx-record".
1668 *
1669 * Fixme: All existing "xxx-record" are all in good formats "-e event ",
1670 * which is covered well now. And new parsing code should be added to
1671 * cover the future complexing formats like event groups etc.
1672 */
1673static int check_ev_match(char *dir_name, char *scriptname,
1674 struct perf_session *session)
1675{
1676 char filename[MAXPATHLEN], evname[128];
1677 char line[BUFSIZ], *p;
1678 struct perf_evsel *pos;
1679 int match, len;
1680 FILE *fp;
1681
1682 sprintf(filename, "%s/bin/%s-record", dir_name, scriptname);
1683
1684 fp = fopen(filename, "r");
1685 if (!fp)
1686 return -1;
1687
1688 while (fgets(line, sizeof(line), fp)) {
1689 p = ltrim(line);
1690 if (*p == '#')
1691 continue;
1692
1693 while (strlen(p)) {
1694 p = strstr(p, "-e");
1695 if (!p)
1696 break;
1697
1698 p += 2;
1699 p = ltrim(p);
1700 len = strcspn(p, " \t");
1701 if (!len)
1702 break;
1703
1704 snprintf(evname, len + 1, "%s", p);
1705
1706 match = 0;
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03001707 evlist__for_each_entry(session->evlist, pos) {
Feng Tang49e639e2012-10-30 11:56:03 +08001708 if (!strcmp(perf_evsel__name(pos), evname)) {
1709 match = 1;
1710 break;
1711 }
1712 }
1713
1714 if (!match) {
1715 fclose(fp);
1716 return -1;
1717 }
1718 }
1719 }
1720
1721 fclose(fp);
1722 return 0;
1723}
1724
1725/*
Feng Tange5f37052012-09-07 16:42:26 +08001726 * Return -1 if none is found, otherwise the actual scripts number.
1727 *
1728 * Currently the only user of this function is the script browser, which
1729 * will list all statically runnable scripts, select one, execute it and
1730 * show the output in a perf browser.
1731 */
1732int find_scripts(char **scripts_array, char **scripts_path_array)
1733{
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001734 struct dirent *script_dirent, *lang_dirent;
Feng Tang49e639e2012-10-30 11:56:03 +08001735 char scripts_path[MAXPATHLEN], lang_path[MAXPATHLEN];
Feng Tange5f37052012-09-07 16:42:26 +08001736 DIR *scripts_dir, *lang_dir;
Feng Tang49e639e2012-10-30 11:56:03 +08001737 struct perf_session *session;
Jiri Olsaf5fc14122013-10-15 16:27:32 +02001738 struct perf_data_file file = {
1739 .path = input_name,
1740 .mode = PERF_DATA_MODE_READ,
1741 };
Feng Tange5f37052012-09-07 16:42:26 +08001742 char *temp;
1743 int i = 0;
1744
Jiri Olsaf5fc14122013-10-15 16:27:32 +02001745 session = perf_session__new(&file, false, NULL);
Feng Tang49e639e2012-10-30 11:56:03 +08001746 if (!session)
1747 return -1;
1748
Josh Poimboeuf46113a52015-12-15 09:39:37 -06001749 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", get_argv_exec_path());
Feng Tange5f37052012-09-07 16:42:26 +08001750
1751 scripts_dir = opendir(scripts_path);
Feng Tang49e639e2012-10-30 11:56:03 +08001752 if (!scripts_dir) {
1753 perf_session__delete(session);
Feng Tange5f37052012-09-07 16:42:26 +08001754 return -1;
Feng Tang49e639e2012-10-30 11:56:03 +08001755 }
Feng Tange5f37052012-09-07 16:42:26 +08001756
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001757 for_each_lang(scripts_path, scripts_dir, lang_dirent) {
Feng Tange5f37052012-09-07 16:42:26 +08001758 snprintf(lang_path, MAXPATHLEN, "%s/%s", scripts_path,
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001759 lang_dirent->d_name);
Feng Tange5f37052012-09-07 16:42:26 +08001760#ifdef NO_LIBPERL
1761 if (strstr(lang_path, "perl"))
1762 continue;
1763#endif
1764#ifdef NO_LIBPYTHON
1765 if (strstr(lang_path, "python"))
1766 continue;
1767#endif
1768
1769 lang_dir = opendir(lang_path);
1770 if (!lang_dir)
1771 continue;
1772
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001773 for_each_script(lang_path, lang_dir, script_dirent) {
Feng Tange5f37052012-09-07 16:42:26 +08001774 /* Skip those real time scripts: xxxtop.p[yl] */
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001775 if (strstr(script_dirent->d_name, "top."))
Feng Tange5f37052012-09-07 16:42:26 +08001776 continue;
1777 sprintf(scripts_path_array[i], "%s/%s", lang_path,
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001778 script_dirent->d_name);
1779 temp = strchr(script_dirent->d_name, '.');
Feng Tange5f37052012-09-07 16:42:26 +08001780 snprintf(scripts_array[i],
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001781 (temp - script_dirent->d_name) + 1,
1782 "%s", script_dirent->d_name);
Feng Tang49e639e2012-10-30 11:56:03 +08001783
1784 if (check_ev_match(lang_path,
1785 scripts_array[i], session))
1786 continue;
1787
Feng Tange5f37052012-09-07 16:42:26 +08001788 i++;
1789 }
Feng Tang49e639e2012-10-30 11:56:03 +08001790 closedir(lang_dir);
Feng Tange5f37052012-09-07 16:42:26 +08001791 }
1792
Feng Tang49e639e2012-10-30 11:56:03 +08001793 closedir(scripts_dir);
1794 perf_session__delete(session);
Feng Tange5f37052012-09-07 16:42:26 +08001795 return i;
1796}
1797
Tom Zanussi38752942009-12-15 02:53:39 -06001798static char *get_script_path(const char *script_root, const char *suffix)
1799{
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001800 struct dirent *script_dirent, *lang_dirent;
Tom Zanussi38752942009-12-15 02:53:39 -06001801 char scripts_path[MAXPATHLEN];
1802 char script_path[MAXPATHLEN];
1803 DIR *scripts_dir, *lang_dir;
1804 char lang_path[MAXPATHLEN];
Robert Richter38efb532011-11-25 11:38:40 +01001805 char *__script_root;
Tom Zanussi38752942009-12-15 02:53:39 -06001806
Josh Poimboeuf46113a52015-12-15 09:39:37 -06001807 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", get_argv_exec_path());
Tom Zanussi38752942009-12-15 02:53:39 -06001808
1809 scripts_dir = opendir(scripts_path);
1810 if (!scripts_dir)
1811 return NULL;
1812
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001813 for_each_lang(scripts_path, scripts_dir, lang_dirent) {
Tom Zanussi38752942009-12-15 02:53:39 -06001814 snprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path,
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001815 lang_dirent->d_name);
Tom Zanussi38752942009-12-15 02:53:39 -06001816 lang_dir = opendir(lang_path);
1817 if (!lang_dir)
1818 continue;
1819
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001820 for_each_script(lang_path, lang_dir, script_dirent) {
1821 __script_root = get_script_root(script_dirent, suffix);
Robert Richter38efb532011-11-25 11:38:40 +01001822 if (__script_root && !strcmp(script_root, __script_root)) {
1823 free(__script_root);
Namhyung Kim946ef2a2012-01-08 02:25:25 +09001824 closedir(lang_dir);
1825 closedir(scripts_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06001826 snprintf(script_path, MAXPATHLEN, "%s/%s",
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001827 lang_path, script_dirent->d_name);
Robert Richter38efb532011-11-25 11:38:40 +01001828 return strdup(script_path);
Tom Zanussi38752942009-12-15 02:53:39 -06001829 }
1830 free(__script_root);
1831 }
Namhyung Kim946ef2a2012-01-08 02:25:25 +09001832 closedir(lang_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06001833 }
Namhyung Kim946ef2a2012-01-08 02:25:25 +09001834 closedir(scripts_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06001835
Robert Richter38efb532011-11-25 11:38:40 +01001836 return NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06001837}
1838
Tom Zanussib5b87312010-11-10 08:16:51 -06001839static bool is_top_script(const char *script_path)
1840{
Stephane Eranian965bb6b2010-12-03 17:52:01 +02001841 return ends_with(script_path, "top") == NULL ? false : true;
Tom Zanussib5b87312010-11-10 08:16:51 -06001842}
1843
1844static int has_required_arg(char *script_path)
1845{
1846 struct script_desc *desc;
1847 int n_args = 0;
1848 char *p;
1849
1850 desc = script_desc__new(NULL);
1851
1852 if (read_script_info(desc, script_path))
1853 goto out;
1854
1855 if (!desc->args)
1856 goto out;
1857
1858 for (p = desc->args; *p; p++)
1859 if (*p == '<')
1860 n_args++;
1861out:
1862 script_desc__delete(desc);
1863
1864 return n_args;
1865}
1866
David Ahernd54b1a92012-08-26 12:24:46 -06001867static int have_cmd(int argc, const char **argv)
Tom Zanussi34c86ea2010-11-10 08:15:43 -06001868{
1869 char **__argv = malloc(sizeof(const char *) * argc);
1870
David Ahernd54b1a92012-08-26 12:24:46 -06001871 if (!__argv) {
1872 pr_err("malloc failed\n");
1873 return -1;
1874 }
1875
Tom Zanussi34c86ea2010-11-10 08:15:43 -06001876 memcpy(__argv, argv, sizeof(const char *) * argc);
1877 argc = parse_options(argc, (const char **)__argv, record_options,
1878 NULL, PARSE_OPT_STOP_AT_NON_OPTION);
1879 free(__argv);
1880
David Ahernd54b1a92012-08-26 12:24:46 -06001881 system_wide = (argc == 0);
1882
1883 return 0;
Tom Zanussi34c86ea2010-11-10 08:15:43 -06001884}
1885
Jiri Olsa7322d6c2015-08-13 09:17:24 +02001886static void script__setup_sample_type(struct perf_script *script)
1887{
1888 struct perf_session *session = script->session;
1889 u64 sample_type = perf_evlist__combined_sample_type(session->evlist);
1890
1891 if (symbol_conf.use_callchain || symbol_conf.cumulate_callchain) {
1892 if ((sample_type & PERF_SAMPLE_REGS_USER) &&
1893 (sample_type & PERF_SAMPLE_STACK_USER))
1894 callchain_param.record_mode = CALLCHAIN_DWARF;
1895 else if (sample_type & PERF_SAMPLE_BRANCH_STACK)
1896 callchain_param.record_mode = CALLCHAIN_LBR;
1897 else
1898 callchain_param.record_mode = CALLCHAIN_FP;
1899 }
1900}
1901
Jiri Olsae099eba2016-01-05 22:09:09 +01001902static int process_stat_round_event(struct perf_tool *tool __maybe_unused,
1903 union perf_event *event,
1904 struct perf_session *session)
1905{
1906 struct stat_round_event *round = &event->stat_round;
1907 struct perf_evsel *counter;
1908
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03001909 evlist__for_each_entry(session->evlist, counter) {
Jiri Olsae099eba2016-01-05 22:09:09 +01001910 perf_stat_process_counter(&stat_config, counter);
1911 process_stat(counter, round->time);
1912 }
1913
1914 process_stat_interval(round->time);
1915 return 0;
1916}
1917
Jiri Olsa91a2c3d2016-01-05 22:09:07 +01001918static int process_stat_config_event(struct perf_tool *tool __maybe_unused,
1919 union perf_event *event,
1920 struct perf_session *session __maybe_unused)
1921{
1922 perf_event__read_stat_config(&stat_config, &event->stat_config);
1923 return 0;
1924}
1925
Jiri Olsacfc88742016-01-05 22:09:06 +01001926static int set_maps(struct perf_script *script)
1927{
1928 struct perf_evlist *evlist = script->session->evlist;
1929
1930 if (!script->cpus || !script->threads)
1931 return 0;
1932
1933 if (WARN_ONCE(script->allocated, "stats double allocation\n"))
1934 return -EINVAL;
1935
1936 perf_evlist__set_maps(evlist, script->cpus, script->threads);
1937
1938 if (perf_evlist__alloc_stats(evlist, true))
1939 return -ENOMEM;
1940
1941 script->allocated = true;
1942 return 0;
1943}
1944
1945static
1946int process_thread_map_event(struct perf_tool *tool,
1947 union perf_event *event,
1948 struct perf_session *session __maybe_unused)
1949{
1950 struct perf_script *script = container_of(tool, struct perf_script, tool);
1951
1952 if (script->threads) {
1953 pr_warning("Extra thread map event, ignoring.\n");
1954 return 0;
1955 }
1956
1957 script->threads = thread_map__new_event(&event->thread_map);
1958 if (!script->threads)
1959 return -ENOMEM;
1960
1961 return set_maps(script);
1962}
1963
1964static
1965int process_cpu_map_event(struct perf_tool *tool __maybe_unused,
1966 union perf_event *event,
1967 struct perf_session *session __maybe_unused)
1968{
1969 struct perf_script *script = container_of(tool, struct perf_script, tool);
1970
1971 if (script->cpus) {
1972 pr_warning("Extra cpu map event, ignoring.\n");
1973 return 0;
1974 }
1975
1976 script->cpus = cpu_map__new_data(&event->cpu_map.data);
1977 if (!script->cpus)
1978 return -ENOMEM;
1979
1980 return set_maps(script);
1981}
1982
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001983int cmd_script(int argc, const char **argv, const char *prefix __maybe_unused)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001984{
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03001985 bool show_full_info = false;
Jiri Olsae90debd2013-12-09 11:02:50 +01001986 bool header = false;
1987 bool header_only = false;
Namhyung Kim6cc870f2014-08-12 15:40:33 +09001988 bool script_started = false;
Tom Zanussib5b87312010-11-10 08:16:51 -06001989 char *rec_script_path = NULL;
1990 char *rep_script_path = NULL;
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02001991 struct perf_session *session;
Adrian Hunter7a680eb2015-04-09 18:53:56 +03001992 struct itrace_synth_opts itrace_synth_opts = { .set = false, };
Tom Zanussib5b87312010-11-10 08:16:51 -06001993 char *script_path = NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06001994 const char **__argv;
Namhyung Kim6cc870f2014-08-12 15:40:33 +09001995 int i, j, err = 0;
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03001996 struct perf_script script = {
1997 .tool = {
1998 .sample = process_sample_event,
1999 .mmap = perf_event__process_mmap,
2000 .mmap2 = perf_event__process_mmap2,
2001 .comm = perf_event__process_comm,
2002 .exit = perf_event__process_exit,
2003 .fork = perf_event__process_fork,
Adrian Hunter7ea95722013-11-01 15:51:30 +02002004 .attr = process_attr,
Jiri Olsa91daee32016-04-07 09:11:13 +02002005 .event_update = perf_event__process_event_update,
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03002006 .tracing_data = perf_event__process_tracing_data,
2007 .build_id = perf_event__process_build_id,
Adrian Hunter7a680eb2015-04-09 18:53:56 +03002008 .id_index = perf_event__process_id_index,
2009 .auxtrace_info = perf_event__process_auxtrace_info,
2010 .auxtrace = perf_event__process_auxtrace,
2011 .auxtrace_error = perf_event__process_auxtrace_error,
Jiri Olsae099eba2016-01-05 22:09:09 +01002012 .stat = perf_event__process_stat_event,
2013 .stat_round = process_stat_round_event,
Jiri Olsa91a2c3d2016-01-05 22:09:07 +01002014 .stat_config = process_stat_config_event,
Jiri Olsacfc88742016-01-05 22:09:06 +01002015 .thread_map = process_thread_map_event,
2016 .cpu_map = process_cpu_map_event,
Jiri Olsa0a8cb852014-07-06 14:18:21 +02002017 .ordered_events = true,
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03002018 .ordering_requires_timestamps = true,
2019 },
2020 };
Yunlong Song06af0f22015-04-02 21:47:16 +08002021 struct perf_data_file file = {
2022 .mode = PERF_DATA_MODE_READ,
2023 };
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03002024 const struct option options[] = {
2025 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
2026 "dump raw trace in ASCII"),
2027 OPT_INCR('v', "verbose", &verbose,
2028 "be more verbose (show symbol address, etc)"),
2029 OPT_BOOLEAN('L', "Latency", &latency_format,
2030 "show latency attributes (irqs/preemption disabled, etc)"),
2031 OPT_CALLBACK_NOOPT('l', "list", NULL, NULL, "list available scripts",
2032 list_available_scripts),
2033 OPT_CALLBACK('s', "script", NULL, "name",
2034 "script file name (lang:script name, script name, or *)",
2035 parse_scriptname),
2036 OPT_STRING('g', "gen-script", &generate_script_lang, "lang",
2037 "generate perf-script.xx script in specified language"),
2038 OPT_STRING('i', "input", &input_name, "file", "input file name"),
2039 OPT_BOOLEAN('d', "debug-mode", &debug_mode,
2040 "do various checks like samples ordering and lost events"),
Jiri Olsae90debd2013-12-09 11:02:50 +01002041 OPT_BOOLEAN(0, "header", &header, "Show data header."),
2042 OPT_BOOLEAN(0, "header-only", &header_only, "Show only data header."),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03002043 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
2044 "file", "vmlinux pathname"),
2045 OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name,
2046 "file", "kallsyms pathname"),
2047 OPT_BOOLEAN('G', "hide-call-graph", &no_callchain,
2048 "When printing symbols do not display call chain"),
He Kuanga7066702016-05-19 11:47:37 +00002049 OPT_CALLBACK(0, "symfs", NULL, "directory",
2050 "Look for files with symbols relative to this directory",
2051 symbol__config_symfs),
Yunlong Song06af0f22015-04-02 21:47:16 +08002052 OPT_CALLBACK('F', "fields", NULL, "str",
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03002053 "comma separated output fields prepend with 'type:'. "
2054 "Valid types: hw,sw,trace,raw. "
2055 "Fields: comm,tid,pid,time,cpu,event,trace,ip,sym,dso,"
Stephane Eraniandc323ce2015-08-31 18:41:13 +02002056 "addr,symoff,period,iregs,brstack,brstacksym,flags", parse_output_fields),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03002057 OPT_BOOLEAN('a', "all-cpus", &system_wide,
2058 "system-wide collection from all CPUs"),
2059 OPT_STRING('S', "symbols", &symbol_conf.sym_list_str, "symbol[,symbol...]",
2060 "only consider these symbols"),
2061 OPT_STRING('C', "cpu", &cpu_list, "cpu", "list of cpus to profile"),
2062 OPT_STRING('c', "comms", &symbol_conf.comm_list_str, "comm[,comm...]",
2063 "only display events for these comms"),
David Aherne03eaa42015-03-24 09:52:41 -06002064 OPT_STRING(0, "pid", &symbol_conf.pid_list_str, "pid[,pid...]",
2065 "only consider symbols in these pids"),
2066 OPT_STRING(0, "tid", &symbol_conf.tid_list_str, "tid[,tid...]",
2067 "only consider symbols in these tids"),
Arnaldo Carvalho de Melo6125cc82016-04-14 18:15:18 -03002068 OPT_UINTEGER(0, "max-stack", &scripting_max_stack,
2069 "Set the maximum stack depth when parsing the callchain, "
2070 "anything beyond the specified depth will be ignored. "
Arnaldo Carvalho de Melo4cb93442016-04-27 10:16:24 -03002071 "Default: kernel.perf_event_max_stack or " __stringify(PERF_MAX_STACK_DEPTH)),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03002072 OPT_BOOLEAN('I', "show-info", &show_full_info,
2073 "display extended information from perf.data file"),
2074 OPT_BOOLEAN('\0', "show-kernel-path", &symbol_conf.show_kernel_path,
2075 "Show the path of [kernel.kallsyms]"),
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002076 OPT_BOOLEAN('\0', "show-task-events", &script.show_task_events,
2077 "Show the fork/comm/exit events"),
Namhyung Kimba1ddf42013-11-26 17:54:26 +09002078 OPT_BOOLEAN('\0', "show-mmap-events", &script.show_mmap_events,
2079 "Show the mmap events"),
Adrian Hunter7c148982015-07-21 12:44:06 +03002080 OPT_BOOLEAN('\0', "show-switch-events", &script.show_switch_events,
2081 "Show context switch events (if recorded)"),
Yunlong Song06af0f22015-04-02 21:47:16 +08002082 OPT_BOOLEAN('f', "force", &file.force, "don't complain, do it"),
Adrian Hunter83e19862015-09-25 16:15:36 +03002083 OPT_BOOLEAN(0, "ns", &nanosecs,
2084 "Use 9 decimal places when displaying time"),
Adrian Hunter7a680eb2015-04-09 18:53:56 +03002085 OPT_CALLBACK_OPTARG(0, "itrace", &itrace_synth_opts, NULL, "opts",
2086 "Instruction Tracing options",
2087 itrace_parse_synth_opts),
Andi Kleena9710ba2015-08-07 15:24:05 -07002088 OPT_BOOLEAN(0, "full-source-path", &srcline_full_filename,
2089 "Show full source file name path for source lines"),
Mark Drayton77e00702015-08-26 12:18:15 -07002090 OPT_BOOLEAN(0, "demangle", &symbol_conf.demangle,
2091 "Enable symbol demangling"),
2092 OPT_BOOLEAN(0, "demangle-kernel", &symbol_conf.demangle_kernel,
2093 "Enable kernel symbol demangling"),
2094
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03002095 OPT_END()
2096 };
Yunlong Song40cae2b2015-03-18 21:35:54 +08002097 const char * const script_subcommands[] = { "record", "report", NULL };
2098 const char *script_usage[] = {
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03002099 "perf script [<options>]",
2100 "perf script [<options>] record <script> [<record-options>] <command>",
2101 "perf script [<options>] report <script> [script-args]",
2102 "perf script [<options>] <script> [<record-options>] <command>",
2103 "perf script [<options>] <top-script> [script-args]",
2104 NULL
2105 };
Tom Zanussi38752942009-12-15 02:53:39 -06002106
Tom Zanussib5b87312010-11-10 08:16:51 -06002107 setup_scripting();
2108
Yunlong Song40cae2b2015-03-18 21:35:54 +08002109 argc = parse_options_subcommand(argc, argv, options, script_subcommands, script_usage,
Tom Zanussib5b87312010-11-10 08:16:51 -06002110 PARSE_OPT_STOP_AT_NON_OPTION);
2111
Jiri Olsaf5fc14122013-10-15 16:27:32 +02002112 file.path = input_name;
2113
Tom Zanussib5b87312010-11-10 08:16:51 -06002114 if (argc > 1 && !strncmp(argv[0], "rec", strlen("rec"))) {
2115 rec_script_path = get_script_path(argv[1], RECORD_SUFFIX);
2116 if (!rec_script_path)
2117 return cmd_record(argc, argv, NULL);
Tom Zanussi38752942009-12-15 02:53:39 -06002118 }
2119
Tom Zanussib5b87312010-11-10 08:16:51 -06002120 if (argc > 1 && !strncmp(argv[0], "rep", strlen("rep"))) {
2121 rep_script_path = get_script_path(argv[1], REPORT_SUFFIX);
2122 if (!rep_script_path) {
Tom Zanussi38752942009-12-15 02:53:39 -06002123 fprintf(stderr,
Tom Zanussib5b87312010-11-10 08:16:51 -06002124 "Please specify a valid report script"
Ingo Molnar133dc4c2010-11-16 18:45:39 +01002125 "(see 'perf script -l' for listing)\n");
Tom Zanussi38752942009-12-15 02:53:39 -06002126 return -1;
2127 }
Tom Zanussi38752942009-12-15 02:53:39 -06002128 }
2129
Adrian Hunter3c5b6452015-09-25 16:15:51 +03002130 if (itrace_synth_opts.callchain &&
2131 itrace_synth_opts.callchain_sz > scripting_max_stack)
2132 scripting_max_stack = itrace_synth_opts.callchain_sz;
2133
Ben Hutchings44e668c2010-10-10 16:10:03 +01002134 /* make sure PERF_EXEC_PATH is set for scripts */
Josh Poimboeuf46113a52015-12-15 09:39:37 -06002135 set_argv_exec_path(get_argv_exec_path());
Ben Hutchings44e668c2010-10-10 16:10:03 +01002136
Tom Zanussib5b87312010-11-10 08:16:51 -06002137 if (argc && !script_name && !rec_script_path && !rep_script_path) {
Tom Zanussia0cccc22010-04-01 23:59:25 -05002138 int live_pipe[2];
Tom Zanussib5b87312010-11-10 08:16:51 -06002139 int rep_args;
Tom Zanussia0cccc22010-04-01 23:59:25 -05002140 pid_t pid;
2141
Tom Zanussib5b87312010-11-10 08:16:51 -06002142 rec_script_path = get_script_path(argv[0], RECORD_SUFFIX);
2143 rep_script_path = get_script_path(argv[0], REPORT_SUFFIX);
2144
2145 if (!rec_script_path && !rep_script_path) {
Namhyung Kimc7118362015-10-25 00:49:27 +09002146 usage_with_options_msg(script_usage, options,
2147 "Couldn't find script `%s'\n\n See perf"
Ingo Molnar133dc4c2010-11-16 18:45:39 +01002148 " script -l for available scripts.\n", argv[0]);
Tom Zanussia0cccc22010-04-01 23:59:25 -05002149 }
2150
Tom Zanussib5b87312010-11-10 08:16:51 -06002151 if (is_top_script(argv[0])) {
2152 rep_args = argc - 1;
2153 } else {
2154 int rec_args;
2155
2156 rep_args = has_required_arg(rep_script_path);
2157 rec_args = (argc - 1) - rep_args;
2158 if (rec_args < 0) {
Namhyung Kimc7118362015-10-25 00:49:27 +09002159 usage_with_options_msg(script_usage, options,
2160 "`%s' script requires options."
Ingo Molnar133dc4c2010-11-16 18:45:39 +01002161 "\n\n See perf script -l for available "
Tom Zanussib5b87312010-11-10 08:16:51 -06002162 "scripts and options.\n", argv[0]);
Tom Zanussib5b87312010-11-10 08:16:51 -06002163 }
Tom Zanussia0cccc22010-04-01 23:59:25 -05002164 }
2165
2166 if (pipe(live_pipe) < 0) {
2167 perror("failed to create pipe");
David Ahernd54b1a92012-08-26 12:24:46 -06002168 return -1;
Tom Zanussia0cccc22010-04-01 23:59:25 -05002169 }
2170
2171 pid = fork();
2172 if (pid < 0) {
2173 perror("failed to fork");
David Ahernd54b1a92012-08-26 12:24:46 -06002174 return -1;
Tom Zanussia0cccc22010-04-01 23:59:25 -05002175 }
2176
2177 if (!pid) {
Tom Zanussib5b87312010-11-10 08:16:51 -06002178 j = 0;
2179
Tom Zanussia0cccc22010-04-01 23:59:25 -05002180 dup2(live_pipe[1], 1);
2181 close(live_pipe[0]);
2182
Robert Richter317df652011-11-25 15:05:25 +01002183 if (is_top_script(argv[0])) {
2184 system_wide = true;
2185 } else if (!system_wide) {
David Ahernd54b1a92012-08-26 12:24:46 -06002186 if (have_cmd(argc - rep_args, &argv[rep_args]) != 0) {
2187 err = -1;
2188 goto out;
2189 }
Robert Richter317df652011-11-25 15:05:25 +01002190 }
Tom Zanussib5b87312010-11-10 08:16:51 -06002191
2192 __argv = malloc((argc + 6) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06002193 if (!__argv) {
2194 pr_err("malloc failed\n");
2195 err = -ENOMEM;
2196 goto out;
2197 }
Tom Zanussie8719ad2010-11-10 07:52:32 -06002198
Tom Zanussib5b87312010-11-10 08:16:51 -06002199 __argv[j++] = "/bin/sh";
2200 __argv[j++] = rec_script_path;
2201 if (system_wide)
2202 __argv[j++] = "-a";
2203 __argv[j++] = "-q";
2204 __argv[j++] = "-o";
2205 __argv[j++] = "-";
2206 for (i = rep_args + 1; i < argc; i++)
2207 __argv[j++] = argv[i];
2208 __argv[j++] = NULL;
Tom Zanussia0cccc22010-04-01 23:59:25 -05002209
2210 execvp("/bin/sh", (char **)__argv);
Tom Zanussie8719ad2010-11-10 07:52:32 -06002211 free(__argv);
Tom Zanussia0cccc22010-04-01 23:59:25 -05002212 exit(-1);
2213 }
2214
2215 dup2(live_pipe[0], 0);
2216 close(live_pipe[1]);
2217
Tom Zanussib5b87312010-11-10 08:16:51 -06002218 __argv = malloc((argc + 4) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06002219 if (!__argv) {
2220 pr_err("malloc failed\n");
2221 err = -ENOMEM;
2222 goto out;
2223 }
2224
Tom Zanussib5b87312010-11-10 08:16:51 -06002225 j = 0;
Tom Zanussi34c86ea2010-11-10 08:15:43 -06002226 __argv[j++] = "/bin/sh";
Tom Zanussib5b87312010-11-10 08:16:51 -06002227 __argv[j++] = rep_script_path;
2228 for (i = 1; i < rep_args + 1; i++)
Tom Zanussi34c86ea2010-11-10 08:15:43 -06002229 __argv[j++] = argv[i];
Tom Zanussib5b87312010-11-10 08:16:51 -06002230 __argv[j++] = "-i";
2231 __argv[j++] = "-";
Tom Zanussi34c86ea2010-11-10 08:15:43 -06002232 __argv[j++] = NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06002233
2234 execvp("/bin/sh", (char **)__argv);
Tom Zanussie8719ad2010-11-10 07:52:32 -06002235 free(__argv);
Tom Zanussi38752942009-12-15 02:53:39 -06002236 exit(-1);
2237 }
Tom Zanussi956ffd02009-11-25 01:15:46 -06002238
Tom Zanussib5b87312010-11-10 08:16:51 -06002239 if (rec_script_path)
2240 script_path = rec_script_path;
2241 if (rep_script_path)
2242 script_path = rep_script_path;
Tom Zanussi956ffd02009-11-25 01:15:46 -06002243
Tom Zanussib5b87312010-11-10 08:16:51 -06002244 if (script_path) {
Tom Zanussib5b87312010-11-10 08:16:51 -06002245 j = 0;
2246
Robert Richter317df652011-11-25 15:05:25 +01002247 if (!rec_script_path)
2248 system_wide = false;
David Ahernd54b1a92012-08-26 12:24:46 -06002249 else if (!system_wide) {
2250 if (have_cmd(argc - 1, &argv[1]) != 0) {
2251 err = -1;
2252 goto out;
2253 }
2254 }
Tom Zanussib5b87312010-11-10 08:16:51 -06002255
2256 __argv = malloc((argc + 2) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06002257 if (!__argv) {
2258 pr_err("malloc failed\n");
2259 err = -ENOMEM;
2260 goto out;
2261 }
2262
Tom Zanussib5b87312010-11-10 08:16:51 -06002263 __argv[j++] = "/bin/sh";
2264 __argv[j++] = script_path;
2265 if (system_wide)
2266 __argv[j++] = "-a";
2267 for (i = 2; i < argc; i++)
2268 __argv[j++] = argv[i];
2269 __argv[j++] = NULL;
2270
2271 execvp("/bin/sh", (char **)__argv);
2272 free(__argv);
2273 exit(-1);
2274 }
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002275
Tom Zanussicf4fee52010-03-03 01:04:33 -06002276 if (!script_name)
2277 setup_pager();
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002278
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03002279 session = perf_session__new(&file, false, &script.tool);
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02002280 if (session == NULL)
Taeung Song52e028342014-09-24 10:33:37 +09002281 return -1;
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02002282
Jiri Olsae90debd2013-12-09 11:02:50 +01002283 if (header || header_only) {
2284 perf_session__fprintf_info(session, stdout, show_full_info);
2285 if (header_only)
Namhyung Kim6cc870f2014-08-12 15:40:33 +09002286 goto out_delete;
Jiri Olsae90debd2013-12-09 11:02:50 +01002287 }
2288
Namhyung Kim0a7e6d12014-08-12 15:40:45 +09002289 if (symbol__init(&session->header.env) < 0)
Namhyung Kim38520dc2014-08-12 15:40:42 +09002290 goto out_delete;
2291
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03002292 script.session = session;
Jiri Olsa7322d6c2015-08-13 09:17:24 +02002293 script__setup_sample_type(&script);
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03002294
Adrian Hunter7a680eb2015-04-09 18:53:56 +03002295 session->itrace_synth_opts = &itrace_synth_opts;
2296
Anton Blanchard5d67be92011-07-04 21:57:50 +10002297 if (cpu_list) {
Namhyung Kim6cc870f2014-08-12 15:40:33 +09002298 err = perf_session__cpu_bitmap(session, cpu_list, cpu_bitmap);
2299 if (err < 0)
2300 goto out_delete;
Anton Blanchard5d67be92011-07-04 21:57:50 +10002301 }
2302
David Ahern1424dc92011-03-09 22:23:28 -07002303 if (!no_callchain)
David Ahernc0230b22011-03-09 22:23:27 -07002304 symbol_conf.use_callchain = true;
2305 else
2306 symbol_conf.use_callchain = false;
2307
Arnaldo Carvalho de Melo9ee67422015-08-03 16:27:40 -03002308 if (session->tevent.pevent &&
2309 pevent_set_function_resolver(session->tevent.pevent,
Arnaldo Carvalho de Meloccb3a822015-07-22 16:43:37 -03002310 machine__resolve_kernel_addr,
2311 &session->machines.host) < 0) {
2312 pr_err("%s: failed to set libtraceevent function resolver\n", __func__);
2313 return -1;
2314 }
2315
Tom Zanussi956ffd02009-11-25 01:15:46 -06002316 if (generate_script_lang) {
2317 struct stat perf_stat;
David Ahern745f43e2011-03-09 22:23:26 -07002318 int input;
Tom Zanussi956ffd02009-11-25 01:15:46 -06002319
David Ahern2c9e45f72011-03-17 10:03:21 -06002320 if (output_set_by_user()) {
David Ahern745f43e2011-03-09 22:23:26 -07002321 fprintf(stderr,
2322 "custom fields not supported for generated scripts");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09002323 err = -EINVAL;
2324 goto out_delete;
David Ahern745f43e2011-03-09 22:23:26 -07002325 }
2326
Jiri Olsacc9784bd2013-10-15 16:27:34 +02002327 input = open(file.path, O_RDONLY); /* input_name */
Tom Zanussi956ffd02009-11-25 01:15:46 -06002328 if (input < 0) {
Namhyung Kim6cc870f2014-08-12 15:40:33 +09002329 err = -errno;
Tom Zanussi956ffd02009-11-25 01:15:46 -06002330 perror("failed to open file");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09002331 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06002332 }
2333
2334 err = fstat(input, &perf_stat);
2335 if (err < 0) {
2336 perror("failed to stat file");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09002337 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06002338 }
2339
2340 if (!perf_stat.st_size) {
2341 fprintf(stderr, "zero-sized file, nothing to do!\n");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09002342 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06002343 }
2344
2345 scripting_ops = script_spec__lookup(generate_script_lang);
2346 if (!scripting_ops) {
2347 fprintf(stderr, "invalid language specifier");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09002348 err = -ENOENT;
2349 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06002350 }
2351
Jiri Olsa29f5ffd2013-12-03 14:09:23 +01002352 err = scripting_ops->generate_script(session->tevent.pevent,
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03002353 "perf-script");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09002354 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06002355 }
2356
2357 if (script_name) {
Tom Zanussi586bc5c2009-12-15 02:53:35 -06002358 err = scripting_ops->start_script(script_name, argc, argv);
Tom Zanussi956ffd02009-11-25 01:15:46 -06002359 if (err)
Namhyung Kim6cc870f2014-08-12 15:40:33 +09002360 goto out_delete;
Ingo Molnar133dc4c2010-11-16 18:45:39 +01002361 pr_debug("perf script started with script %s\n\n", script_name);
Namhyung Kim6cc870f2014-08-12 15:40:33 +09002362 script_started = true;
Tom Zanussi956ffd02009-11-25 01:15:46 -06002363 }
2364
David Ahern9cbdb702011-04-06 21:54:20 -06002365
2366 err = perf_session__check_output_opt(session);
2367 if (err < 0)
Namhyung Kim6cc870f2014-08-12 15:40:33 +09002368 goto out_delete;
David Ahern9cbdb702011-04-06 21:54:20 -06002369
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03002370 err = __cmd_script(&script);
Tom Zanussi956ffd02009-11-25 01:15:46 -06002371
Adrian Hunterd445dd22014-08-15 22:08:37 +03002372 flush_scripting();
2373
Namhyung Kim6cc870f2014-08-12 15:40:33 +09002374out_delete:
Jiri Olsacfc88742016-01-05 22:09:06 +01002375 perf_evlist__free_stats(session->evlist);
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02002376 perf_session__delete(session);
Namhyung Kim6cc870f2014-08-12 15:40:33 +09002377
2378 if (script_started)
2379 cleanup_scripting();
Tom Zanussi956ffd02009-11-25 01:15:46 -06002380out:
2381 return err;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002382}