blob: c859e59dfe3e7efae711fa056967c910a987d989 [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 Olsaf5fc1412013-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"
Adrian Huntere2167082016-06-23 16:40:58 +030024#include "util/thread-stack.h"
Anton Blanchard5d67be92011-07-04 21:57:50 +100025#include <linux/bitmap.h>
Arnaldo Carvalho de Melo6125cc82016-04-14 18:15:18 -030026#include <linux/stringify.h>
Jiri Olsacfc88742016-01-05 22:09:06 +010027#include "asm/bug.h"
Jiri Olsac19ac912016-02-24 09:46:54 +010028#include "util/mem-events.h"
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +020029
Tom Zanussi956ffd02009-11-25 01:15:46 -060030static char const *script_name;
31static char const *generate_script_lang;
Frederic Weisbeckerffabd992010-05-27 16:27:47 +020032static bool debug_mode;
Frederic Weisbeckere1889d72010-04-24 01:55:09 +020033static u64 last_timestamp;
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +020034static u64 nr_unordered;
David Ahernc0230b22011-03-09 22:23:27 -070035static bool no_callchain;
Namhyung Kim47390ae2013-06-04 14:20:28 +090036static bool latency_format;
Robert Richter317df652011-11-25 15:05:25 +010037static bool system_wide;
Adrian Hunter400ea6d2015-04-09 18:54:05 +030038static bool print_flags;
Adrian Hunter83e19862015-09-25 16:15:36 +030039static bool nanosecs;
Anton Blanchard5d67be92011-07-04 21:57:50 +100040static const char *cpu_list;
41static DECLARE_BITMAP(cpu_bitmap, MAX_NR_CPUS);
Jiri Olsa91a2c3d2016-01-05 22:09:07 +010042static struct perf_stat_config stat_config;
Tom Zanussi956ffd02009-11-25 01:15:46 -060043
Adrian Hunter44cbe722015-09-25 16:15:50 +030044unsigned int scripting_max_stack = PERF_MAX_STACK_DEPTH;
Adrian Hunter03cd1fe2015-09-25 16:15:49 +030045
David Ahern745f43e2011-03-09 22:23:26 -070046enum perf_output_field {
47 PERF_OUTPUT_COMM = 1U << 0,
48 PERF_OUTPUT_TID = 1U << 1,
49 PERF_OUTPUT_PID = 1U << 2,
50 PERF_OUTPUT_TIME = 1U << 3,
51 PERF_OUTPUT_CPU = 1U << 4,
52 PERF_OUTPUT_EVNAME = 1U << 5,
53 PERF_OUTPUT_TRACE = 1U << 6,
David Ahern787bef12011-05-27 14:28:43 -060054 PERF_OUTPUT_IP = 1U << 7,
55 PERF_OUTPUT_SYM = 1U << 8,
David Ahern610723f2011-05-27 14:28:44 -060056 PERF_OUTPUT_DSO = 1U << 9,
David Ahern7cec0922011-05-30 13:08:23 -060057 PERF_OUTPUT_ADDR = 1U << 10,
Akihiro Nagaia978f2a2012-01-30 13:43:15 +090058 PERF_OUTPUT_SYMOFFSET = 1U << 11,
Adrian Huntercc8fae12013-12-06 09:42:57 +020059 PERF_OUTPUT_SRCLINE = 1U << 12,
Jiri Olsa535aeaa2014-08-25 16:45:42 +020060 PERF_OUTPUT_PERIOD = 1U << 13,
Stephane Eranianfc36f942015-08-31 18:41:10 +020061 PERF_OUTPUT_IREGS = 1U << 14,
Stephane Eraniandc323ce2015-08-31 18:41:13 +020062 PERF_OUTPUT_BRSTACK = 1U << 15,
63 PERF_OUTPUT_BRSTACKSYM = 1U << 16,
Jiri Olsa94ddddf2016-02-15 09:34:51 +010064 PERF_OUTPUT_DATA_SRC = 1U << 17,
65 PERF_OUTPUT_WEIGHT = 1U << 18,
Wang Nan30372f02016-02-24 11:20:45 +000066 PERF_OUTPUT_BPF_OUTPUT = 1U << 19,
Adrian Huntere2167082016-06-23 16:40:58 +030067 PERF_OUTPUT_CALLINDENT = 1U << 20,
David Ahern745f43e2011-03-09 22:23:26 -070068};
69
70struct output_option {
71 const char *str;
72 enum perf_output_field field;
73} all_output_options[] = {
74 {.str = "comm", .field = PERF_OUTPUT_COMM},
75 {.str = "tid", .field = PERF_OUTPUT_TID},
76 {.str = "pid", .field = PERF_OUTPUT_PID},
77 {.str = "time", .field = PERF_OUTPUT_TIME},
78 {.str = "cpu", .field = PERF_OUTPUT_CPU},
79 {.str = "event", .field = PERF_OUTPUT_EVNAME},
80 {.str = "trace", .field = PERF_OUTPUT_TRACE},
David Ahern787bef12011-05-27 14:28:43 -060081 {.str = "ip", .field = PERF_OUTPUT_IP},
David Ahernc0230b22011-03-09 22:23:27 -070082 {.str = "sym", .field = PERF_OUTPUT_SYM},
David Ahern610723f2011-05-27 14:28:44 -060083 {.str = "dso", .field = PERF_OUTPUT_DSO},
David Ahern7cec0922011-05-30 13:08:23 -060084 {.str = "addr", .field = PERF_OUTPUT_ADDR},
Akihiro Nagaia978f2a2012-01-30 13:43:15 +090085 {.str = "symoff", .field = PERF_OUTPUT_SYMOFFSET},
Adrian Huntercc8fae12013-12-06 09:42:57 +020086 {.str = "srcline", .field = PERF_OUTPUT_SRCLINE},
Jiri Olsa535aeaa2014-08-25 16:45:42 +020087 {.str = "period", .field = PERF_OUTPUT_PERIOD},
Stephane Eranianfc36f942015-08-31 18:41:10 +020088 {.str = "iregs", .field = PERF_OUTPUT_IREGS},
Stephane Eraniandc323ce2015-08-31 18:41:13 +020089 {.str = "brstack", .field = PERF_OUTPUT_BRSTACK},
90 {.str = "brstacksym", .field = PERF_OUTPUT_BRSTACKSYM},
Jiri Olsa94ddddf2016-02-15 09:34:51 +010091 {.str = "data_src", .field = PERF_OUTPUT_DATA_SRC},
92 {.str = "weight", .field = PERF_OUTPUT_WEIGHT},
Wang Nan30372f02016-02-24 11:20:45 +000093 {.str = "bpf-output", .field = PERF_OUTPUT_BPF_OUTPUT},
Adrian Huntere2167082016-06-23 16:40:58 +030094 {.str = "callindent", .field = PERF_OUTPUT_CALLINDENT},
David Ahern745f43e2011-03-09 22:23:26 -070095};
96
97/* default set to maintain compatibility with current format */
David Ahern2c9e45f72011-03-17 10:03:21 -060098static struct {
99 bool user_set;
David Ahern9cbdb702011-04-06 21:54:20 -0600100 bool wildcard_set;
David Aherna6ffaf92013-08-07 22:50:51 -0400101 unsigned int print_ip_opts;
David Ahern2c9e45f72011-03-17 10:03:21 -0600102 u64 fields;
103 u64 invalid_fields;
104} output[PERF_TYPE_MAX] = {
David Ahern1424dc92011-03-09 22:23:28 -0700105
David Ahern2c9e45f72011-03-17 10:03:21 -0600106 [PERF_TYPE_HARDWARE] = {
107 .user_set = false,
David Ahern1424dc92011-03-09 22:23:28 -0700108
David Ahern2c9e45f72011-03-17 10:03:21 -0600109 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
110 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
David Ahern787bef12011-05-27 14:28:43 -0600111 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
Jiri Olsae8564b72014-08-25 16:45:43 +0200112 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO |
113 PERF_OUTPUT_PERIOD,
David Ahern2c9e45f72011-03-17 10:03:21 -0600114
Wang Nan30372f02016-02-24 11:20:45 +0000115 .invalid_fields = PERF_OUTPUT_TRACE | PERF_OUTPUT_BPF_OUTPUT,
David Ahern2c9e45f72011-03-17 10:03:21 -0600116 },
117
118 [PERF_TYPE_SOFTWARE] = {
119 .user_set = false,
120
121 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
122 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
David Ahern787bef12011-05-27 14:28:43 -0600123 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
Jiri Olsae8564b72014-08-25 16:45:43 +0200124 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO |
Wang Nan30372f02016-02-24 11:20:45 +0000125 PERF_OUTPUT_PERIOD | PERF_OUTPUT_BPF_OUTPUT,
David Ahern2c9e45f72011-03-17 10:03:21 -0600126
127 .invalid_fields = PERF_OUTPUT_TRACE,
128 },
129
130 [PERF_TYPE_TRACEPOINT] = {
131 .user_set = false,
132
133 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
134 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
Wang Nan30372f02016-02-24 11:20:45 +0000135 PERF_OUTPUT_EVNAME | PERF_OUTPUT_TRACE
David Ahern2c9e45f72011-03-17 10:03:21 -0600136 },
Arun Sharma0817a6a2011-04-14 10:38:18 -0700137
138 [PERF_TYPE_RAW] = {
139 .user_set = false,
140
141 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
142 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
David Ahern787bef12011-05-27 14:28:43 -0600143 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
Jiri Olsae8564b72014-08-25 16:45:43 +0200144 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO |
Jiri Olsaff7b1912016-02-15 09:34:52 +0100145 PERF_OUTPUT_PERIOD | PERF_OUTPUT_ADDR |
146 PERF_OUTPUT_DATA_SRC | PERF_OUTPUT_WEIGHT,
Arun Sharma0817a6a2011-04-14 10:38:18 -0700147
Wang Nan30372f02016-02-24 11:20:45 +0000148 .invalid_fields = PERF_OUTPUT_TRACE | PERF_OUTPUT_BPF_OUTPUT,
Arun Sharma0817a6a2011-04-14 10:38:18 -0700149 },
Wang Nan27cfef02015-12-08 02:25:43 +0000150
151 [PERF_TYPE_BREAKPOINT] = {
152 .user_set = false,
153
154 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
155 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
156 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
157 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO |
158 PERF_OUTPUT_PERIOD,
159
Wang Nan30372f02016-02-24 11:20:45 +0000160 .invalid_fields = PERF_OUTPUT_TRACE | PERF_OUTPUT_BPF_OUTPUT,
Wang Nan27cfef02015-12-08 02:25:43 +0000161 },
David Ahern1424dc92011-03-09 22:23:28 -0700162};
David Ahern745f43e2011-03-09 22:23:26 -0700163
David Ahern2c9e45f72011-03-17 10:03:21 -0600164static bool output_set_by_user(void)
165{
166 int j;
167 for (j = 0; j < PERF_TYPE_MAX; ++j) {
168 if (output[j].user_set)
169 return true;
170 }
171 return false;
172}
David Ahern745f43e2011-03-09 22:23:26 -0700173
David Ahern9cbdb702011-04-06 21:54:20 -0600174static const char *output_field2str(enum perf_output_field field)
175{
176 int i, imax = ARRAY_SIZE(all_output_options);
177 const char *str = "";
178
179 for (i = 0; i < imax; ++i) {
180 if (all_output_options[i].field == field) {
181 str = all_output_options[i].str;
182 break;
183 }
184 }
185 return str;
186}
187
David Ahern2c9e45f72011-03-17 10:03:21 -0600188#define PRINT_FIELD(x) (output[attr->type].fields & PERF_OUTPUT_##x)
David Ahern1424dc92011-03-09 22:23:28 -0700189
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300190static int perf_evsel__do_check_stype(struct perf_evsel *evsel,
191 u64 sample_type, const char *sample_msg,
192 enum perf_output_field field,
193 bool allow_user_set)
David Ahern1424dc92011-03-09 22:23:28 -0700194{
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300195 struct perf_event_attr *attr = &evsel->attr;
David Ahern9cbdb702011-04-06 21:54:20 -0600196 int type = attr->type;
197 const char *evname;
198
199 if (attr->sample_type & sample_type)
200 return 0;
201
202 if (output[type].user_set) {
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300203 if (allow_user_set)
204 return 0;
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300205 evname = perf_evsel__name(evsel);
David Ahern9cbdb702011-04-06 21:54:20 -0600206 pr_err("Samples for '%s' event do not have %s attribute set. "
207 "Cannot print '%s' field.\n",
208 evname, sample_msg, output_field2str(field));
209 return -1;
210 }
211
212 /* user did not ask for it explicitly so remove from the default list */
213 output[type].fields &= ~field;
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300214 evname = perf_evsel__name(evsel);
David Ahern9cbdb702011-04-06 21:54:20 -0600215 pr_debug("Samples for '%s' event do not have %s attribute set. "
216 "Skipping '%s' field.\n",
217 evname, sample_msg, output_field2str(field));
218
219 return 0;
220}
221
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300222static int perf_evsel__check_stype(struct perf_evsel *evsel,
223 u64 sample_type, const char *sample_msg,
224 enum perf_output_field field)
225{
226 return perf_evsel__do_check_stype(evsel, sample_type, sample_msg, field,
227 false);
228}
229
David Ahern9cbdb702011-04-06 21:54:20 -0600230static int perf_evsel__check_attr(struct perf_evsel *evsel,
231 struct perf_session *session)
232{
233 struct perf_event_attr *attr = &evsel->attr;
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300234 bool allow_user_set;
235
Jiri Olsae099eba2016-01-05 22:09:09 +0100236 if (perf_header__has_feat(&session->header, HEADER_STAT))
237 return 0;
238
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300239 allow_user_set = perf_header__has_feat(&session->header,
240 HEADER_AUXTRACE);
David Ahern9cbdb702011-04-06 21:54:20 -0600241
David Ahern1424dc92011-03-09 22:23:28 -0700242 if (PRINT_FIELD(TRACE) &&
243 !perf_session__has_traces(session, "record -R"))
244 return -EINVAL;
245
David Ahern787bef12011-05-27 14:28:43 -0600246 if (PRINT_FIELD(IP)) {
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300247 if (perf_evsel__check_stype(evsel, PERF_SAMPLE_IP, "IP",
248 PERF_OUTPUT_IP))
David Ahern1424dc92011-03-09 22:23:28 -0700249 return -EINVAL;
David Ahern1424dc92011-03-09 22:23:28 -0700250 }
David Ahern7cec0922011-05-30 13:08:23 -0600251
252 if (PRINT_FIELD(ADDR) &&
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300253 perf_evsel__do_check_stype(evsel, PERF_SAMPLE_ADDR, "ADDR",
254 PERF_OUTPUT_ADDR, allow_user_set))
David Ahern7cec0922011-05-30 13:08:23 -0600255 return -EINVAL;
256
Jiri Olsa94ddddf2016-02-15 09:34:51 +0100257 if (PRINT_FIELD(DATA_SRC) &&
258 perf_evsel__check_stype(evsel, PERF_SAMPLE_DATA_SRC, "DATA_SRC",
259 PERF_OUTPUT_DATA_SRC))
260 return -EINVAL;
261
262 if (PRINT_FIELD(WEIGHT) &&
263 perf_evsel__check_stype(evsel, PERF_SAMPLE_WEIGHT, "WEIGHT",
264 PERF_OUTPUT_WEIGHT))
265 return -EINVAL;
266
David Ahern7cec0922011-05-30 13:08:23 -0600267 if (PRINT_FIELD(SYM) && !PRINT_FIELD(IP) && !PRINT_FIELD(ADDR)) {
268 pr_err("Display of symbols requested but neither sample IP nor "
269 "sample address\nis selected. Hence, no addresses to convert "
270 "to symbols.\n");
David Ahern787bef12011-05-27 14:28:43 -0600271 return -EINVAL;
272 }
Akihiro Nagaia978f2a2012-01-30 13:43:15 +0900273 if (PRINT_FIELD(SYMOFFSET) && !PRINT_FIELD(SYM)) {
274 pr_err("Display of offsets requested but symbol is not"
275 "selected.\n");
276 return -EINVAL;
277 }
David Ahern7cec0922011-05-30 13:08:23 -0600278 if (PRINT_FIELD(DSO) && !PRINT_FIELD(IP) && !PRINT_FIELD(ADDR)) {
279 pr_err("Display of DSO requested but neither sample IP nor "
280 "sample address\nis selected. Hence, no addresses to convert "
281 "to DSO.\n");
David Ahern610723f2011-05-27 14:28:44 -0600282 return -EINVAL;
283 }
Adrian Huntercc8fae12013-12-06 09:42:57 +0200284 if (PRINT_FIELD(SRCLINE) && !PRINT_FIELD(IP)) {
285 pr_err("Display of source line number requested but sample IP is not\n"
286 "selected. Hence, no address to lookup the source line number.\n");
287 return -EINVAL;
288 }
David Ahern1424dc92011-03-09 22:23:28 -0700289
290 if ((PRINT_FIELD(PID) || PRINT_FIELD(TID)) &&
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300291 perf_evsel__check_stype(evsel, PERF_SAMPLE_TID, "TID",
292 PERF_OUTPUT_TID|PERF_OUTPUT_PID))
David Ahern1424dc92011-03-09 22:23:28 -0700293 return -EINVAL;
David Ahern1424dc92011-03-09 22:23:28 -0700294
295 if (PRINT_FIELD(TIME) &&
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300296 perf_evsel__check_stype(evsel, PERF_SAMPLE_TIME, "TIME",
297 PERF_OUTPUT_TIME))
David Ahern1424dc92011-03-09 22:23:28 -0700298 return -EINVAL;
David Ahern1424dc92011-03-09 22:23:28 -0700299
300 if (PRINT_FIELD(CPU) &&
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300301 perf_evsel__do_check_stype(evsel, PERF_SAMPLE_CPU, "CPU",
302 PERF_OUTPUT_CPU, allow_user_set))
David Ahern1424dc92011-03-09 22:23:28 -0700303 return -EINVAL;
David Ahern9cbdb702011-04-06 21:54:20 -0600304
Jiri Olsa535aeaa2014-08-25 16:45:42 +0200305 if (PRINT_FIELD(PERIOD) &&
306 perf_evsel__check_stype(evsel, PERF_SAMPLE_PERIOD, "PERIOD",
307 PERF_OUTPUT_PERIOD))
308 return -EINVAL;
309
Stephane Eranianfc36f942015-08-31 18:41:10 +0200310 if (PRINT_FIELD(IREGS) &&
311 perf_evsel__check_stype(evsel, PERF_SAMPLE_REGS_INTR, "IREGS",
312 PERF_OUTPUT_IREGS))
313 return -EINVAL;
314
David Ahern9cbdb702011-04-06 21:54:20 -0600315 return 0;
316}
317
Adrian Hunter7ea95722013-11-01 15:51:30 +0200318static void set_print_ip_opts(struct perf_event_attr *attr)
319{
320 unsigned int type = attr->type;
321
322 output[type].print_ip_opts = 0;
323 if (PRINT_FIELD(IP))
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300324 output[type].print_ip_opts |= EVSEL__PRINT_IP;
Adrian Hunter7ea95722013-11-01 15:51:30 +0200325
326 if (PRINT_FIELD(SYM))
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300327 output[type].print_ip_opts |= EVSEL__PRINT_SYM;
Adrian Hunter7ea95722013-11-01 15:51:30 +0200328
329 if (PRINT_FIELD(DSO))
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300330 output[type].print_ip_opts |= EVSEL__PRINT_DSO;
Adrian Hunter7ea95722013-11-01 15:51:30 +0200331
332 if (PRINT_FIELD(SYMOFFSET))
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300333 output[type].print_ip_opts |= EVSEL__PRINT_SYMOFFSET;
Adrian Huntercc8fae12013-12-06 09:42:57 +0200334
335 if (PRINT_FIELD(SRCLINE))
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300336 output[type].print_ip_opts |= EVSEL__PRINT_SRCLINE;
Adrian Hunter7ea95722013-11-01 15:51:30 +0200337}
338
David Ahern9cbdb702011-04-06 21:54:20 -0600339/*
340 * verify all user requested events exist and the samples
341 * have the expected data
342 */
343static int perf_session__check_output_opt(struct perf_session *session)
344{
He Kuang40f20e52016-05-16 04:51:19 +0000345 unsigned int j;
David Ahern9cbdb702011-04-06 21:54:20 -0600346 struct perf_evsel *evsel;
347
348 for (j = 0; j < PERF_TYPE_MAX; ++j) {
349 evsel = perf_session__find_first_evtype(session, j);
350
351 /*
352 * even if fields is set to 0 (ie., show nothing) event must
353 * exist if user explicitly includes it on the command line
354 */
355 if (!evsel && output[j].user_set && !output[j].wildcard_set) {
356 pr_err("%s events do not exist. "
357 "Remove corresponding -f option to proceed.\n",
358 event_type(j));
359 return -1;
360 }
361
362 if (evsel && output[j].fields &&
363 perf_evsel__check_attr(evsel, session))
364 return -1;
David Aherna6ffaf92013-08-07 22:50:51 -0400365
366 if (evsel == NULL)
367 continue;
368
Adrian Hunter7ea95722013-11-01 15:51:30 +0200369 set_print_ip_opts(&evsel->attr);
David Ahern1424dc92011-03-09 22:23:28 -0700370 }
371
Adrian Hunter98526ee2014-07-31 09:00:59 +0300372 if (!no_callchain) {
373 bool use_callchain = false;
He Kuang71ac8992016-08-04 11:25:43 +0000374 bool not_pipe = false;
Adrian Hunter98526ee2014-07-31 09:00:59 +0300375
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300376 evlist__for_each_entry(session->evlist, evsel) {
He Kuang71ac8992016-08-04 11:25:43 +0000377 not_pipe = true;
Adrian Hunter98526ee2014-07-31 09:00:59 +0300378 if (evsel->attr.sample_type & PERF_SAMPLE_CALLCHAIN) {
379 use_callchain = true;
380 break;
381 }
382 }
He Kuang71ac8992016-08-04 11:25:43 +0000383 if (not_pipe && !use_callchain)
Adrian Hunter98526ee2014-07-31 09:00:59 +0300384 symbol_conf.use_callchain = false;
385 }
386
David Ahern80b8b492013-11-19 21:07:37 -0700387 /*
388 * set default for tracepoints to print symbols only
389 * if callchains are present
390 */
391 if (symbol_conf.use_callchain &&
392 !output[PERF_TYPE_TRACEPOINT].user_set) {
393 struct perf_event_attr *attr;
394
395 j = PERF_TYPE_TRACEPOINT;
David Ahern80b8b492013-11-19 21:07:37 -0700396
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300397 evlist__for_each_entry(session->evlist, evsel) {
He Kuang40f20e52016-05-16 04:51:19 +0000398 if (evsel->attr.type != j)
399 continue;
David Ahern80b8b492013-11-19 21:07:37 -0700400
He Kuang40f20e52016-05-16 04:51:19 +0000401 attr = &evsel->attr;
402
403 if (attr->sample_type & PERF_SAMPLE_CALLCHAIN) {
404 output[j].fields |= PERF_OUTPUT_IP;
405 output[j].fields |= PERF_OUTPUT_SYM;
406 output[j].fields |= PERF_OUTPUT_DSO;
407 set_print_ip_opts(attr);
408 goto out;
409 }
David Ahern80b8b492013-11-19 21:07:37 -0700410 }
411 }
412
413out:
David Ahern1424dc92011-03-09 22:23:28 -0700414 return 0;
415}
David Ahern745f43e2011-03-09 22:23:26 -0700416
Arnaldo Carvalho de Meloa3dff302016-03-23 11:55:24 -0300417static void print_sample_iregs(struct perf_sample *sample,
Stephane Eranianfc36f942015-08-31 18:41:10 +0200418 struct perf_event_attr *attr)
419{
420 struct regs_dump *regs = &sample->intr_regs;
421 uint64_t mask = attr->sample_regs_intr;
422 unsigned i = 0, r;
423
424 if (!regs)
425 return;
426
427 for_each_set_bit(r, (unsigned long *) &mask, sizeof(mask) * 8) {
428 u64 val = regs->regs[i++];
429 printf("%5s:0x%"PRIx64" ", perf_reg_name(r), val);
430 }
431}
432
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -0300433static void print_sample_start(struct perf_sample *sample,
David Ahern1424dc92011-03-09 22:23:28 -0700434 struct thread *thread,
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300435 struct perf_evsel *evsel)
David Ahernc70c94b2011-03-09 22:23:25 -0700436{
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300437 struct perf_event_attr *attr = &evsel->attr;
David Ahernc70c94b2011-03-09 22:23:25 -0700438 unsigned long secs;
439 unsigned long usecs;
David Ahern745f43e2011-03-09 22:23:26 -0700440 unsigned long long nsecs;
David Ahernc70c94b2011-03-09 22:23:25 -0700441
David Ahern745f43e2011-03-09 22:23:26 -0700442 if (PRINT_FIELD(COMM)) {
443 if (latency_format)
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +0200444 printf("%8.8s ", thread__comm_str(thread));
David Ahern787bef12011-05-27 14:28:43 -0600445 else if (PRINT_FIELD(IP) && symbol_conf.use_callchain)
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +0200446 printf("%s ", thread__comm_str(thread));
David Ahern745f43e2011-03-09 22:23:26 -0700447 else
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +0200448 printf("%16s ", thread__comm_str(thread));
David Ahern745f43e2011-03-09 22:23:26 -0700449 }
David Ahernc70c94b2011-03-09 22:23:25 -0700450
David Ahern745f43e2011-03-09 22:23:26 -0700451 if (PRINT_FIELD(PID) && PRINT_FIELD(TID))
452 printf("%5d/%-5d ", sample->pid, sample->tid);
453 else if (PRINT_FIELD(PID))
454 printf("%5d ", sample->pid);
455 else if (PRINT_FIELD(TID))
456 printf("%5d ", sample->tid);
David Ahernc70c94b2011-03-09 22:23:25 -0700457
David Ahern745f43e2011-03-09 22:23:26 -0700458 if (PRINT_FIELD(CPU)) {
459 if (latency_format)
460 printf("%3d ", sample->cpu);
461 else
462 printf("[%03d] ", sample->cpu);
463 }
David Ahernc70c94b2011-03-09 22:23:25 -0700464
David Ahern745f43e2011-03-09 22:23:26 -0700465 if (PRINT_FIELD(TIME)) {
466 nsecs = sample->time;
467 secs = nsecs / NSECS_PER_SEC;
468 nsecs -= secs * NSECS_PER_SEC;
469 usecs = nsecs / NSECS_PER_USEC;
Adrian Hunter83e19862015-09-25 16:15:36 +0300470 if (nanosecs)
471 printf("%5lu.%09llu: ", secs, nsecs);
472 else
473 printf("%5lu.%06lu: ", secs, usecs);
David Ahern745f43e2011-03-09 22:23:26 -0700474 }
David Ahernc70c94b2011-03-09 22:23:25 -0700475}
476
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200477static inline char
478mispred_str(struct branch_entry *br)
479{
480 if (!(br->flags.mispred || br->flags.predicted))
481 return '-';
482
483 return br->flags.predicted ? 'P' : 'M';
484}
485
Arnaldo Carvalho de Meloa3dff302016-03-23 11:55:24 -0300486static void print_sample_brstack(struct perf_sample *sample)
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200487{
488 struct branch_stack *br = sample->branch_stack;
489 u64 i;
490
491 if (!(br && br->nr))
492 return;
493
494 for (i = 0; i < br->nr; i++) {
495 printf(" 0x%"PRIx64"/0x%"PRIx64"/%c/%c/%c/%d ",
496 br->entries[i].from,
497 br->entries[i].to,
498 mispred_str( br->entries + i),
499 br->entries[i].flags.in_tx? 'X' : '-',
500 br->entries[i].flags.abort? 'A' : '-',
501 br->entries[i].flags.cycles);
502 }
503}
504
Arnaldo Carvalho de Meloa3dff302016-03-23 11:55:24 -0300505static void print_sample_brstacksym(struct perf_sample *sample,
506 struct thread *thread)
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200507{
508 struct branch_stack *br = sample->branch_stack;
509 struct addr_location alf, alt;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200510 u64 i, from, to;
511
512 if (!(br && br->nr))
513 return;
514
515 for (i = 0; i < br->nr; i++) {
516
517 memset(&alf, 0, sizeof(alf));
518 memset(&alt, 0, sizeof(alt));
519 from = br->entries[i].from;
520 to = br->entries[i].to;
521
Arnaldo Carvalho de Melo473398a2016-03-22 18:23:43 -0300522 thread__find_addr_map(thread, sample->cpumode, MAP__FUNCTION, from, &alf);
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200523 if (alf.map)
524 alf.sym = map__find_symbol(alf.map, alf.addr, NULL);
525
Arnaldo Carvalho de Melo473398a2016-03-22 18:23:43 -0300526 thread__find_addr_map(thread, sample->cpumode, MAP__FUNCTION, to, &alt);
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200527 if (alt.map)
528 alt.sym = map__find_symbol(alt.map, alt.addr, NULL);
529
530 symbol__fprintf_symname_offs(alf.sym, &alf, stdout);
531 putchar('/');
532 symbol__fprintf_symname_offs(alt.sym, &alt, stdout);
533 printf("/%c/%c/%c/%d ",
534 mispred_str( br->entries + i),
535 br->entries[i].flags.in_tx? 'X' : '-',
536 br->entries[i].flags.abort? 'A' : '-',
537 br->entries[i].flags.cycles);
538 }
539}
540
541
Arnaldo Carvalho de Meloa3dff302016-03-23 11:55:24 -0300542static void print_sample_addr(struct perf_sample *sample,
David Ahern7cec0922011-05-30 13:08:23 -0600543 struct thread *thread,
544 struct perf_event_attr *attr)
545{
546 struct addr_location al;
David Ahern7cec0922011-05-30 13:08:23 -0600547
548 printf("%16" PRIx64, sample->addr);
549
550 if (!sample_addr_correlates_sym(attr))
551 return;
552
Arnaldo Carvalho de Meloc2740a82016-03-22 18:44:46 -0300553 thread__resolve(thread, &al, sample);
David Ahern7cec0922011-05-30 13:08:23 -0600554
555 if (PRINT_FIELD(SYM)) {
Akihiro Nagai547a92e2012-01-30 13:42:57 +0900556 printf(" ");
Akihiro Nagaia978f2a2012-01-30 13:43:15 +0900557 if (PRINT_FIELD(SYMOFFSET))
558 symbol__fprintf_symname_offs(al.sym, &al, stdout);
559 else
560 symbol__fprintf_symname(al.sym, stdout);
David Ahern7cec0922011-05-30 13:08:23 -0600561 }
562
563 if (PRINT_FIELD(DSO)) {
Akihiro Nagai547a92e2012-01-30 13:42:57 +0900564 printf(" (");
565 map__fprintf_dsoname(al.map, stdout);
566 printf(")");
David Ahern7cec0922011-05-30 13:08:23 -0600567 }
568}
569
Adrian Huntere2167082016-06-23 16:40:58 +0300570static void print_sample_callindent(struct perf_sample *sample,
571 struct perf_evsel *evsel,
572 struct thread *thread,
573 struct addr_location *al)
574{
575 struct perf_event_attr *attr = &evsel->attr;
576 size_t depth = thread_stack__depth(thread);
577 struct addr_location addr_al;
578 const char *name = NULL;
579 static int spacing;
580 int len = 0;
581 u64 ip = 0;
582
583 /*
584 * The 'return' has already been popped off the stack so the depth has
585 * to be adjusted to match the 'call'.
586 */
587 if (thread->ts && sample->flags & PERF_IP_FLAG_RETURN)
588 depth += 1;
589
590 if (sample->flags & (PERF_IP_FLAG_CALL | PERF_IP_FLAG_TRACE_BEGIN)) {
591 if (sample_addr_correlates_sym(attr)) {
592 thread__resolve(thread, &addr_al, sample);
593 if (addr_al.sym)
594 name = addr_al.sym->name;
595 else
596 ip = sample->addr;
597 } else {
598 ip = sample->addr;
599 }
600 } else if (sample->flags & (PERF_IP_FLAG_RETURN | PERF_IP_FLAG_TRACE_END)) {
601 if (al->sym)
602 name = al->sym->name;
603 else
604 ip = sample->ip;
605 }
606
607 if (name)
608 len = printf("%*s%s", (int)depth * 4, "", name);
609 else if (ip)
610 len = printf("%*s%16" PRIx64, (int)depth * 4, "", ip);
611
612 if (len < 0)
613 return;
614
615 /*
616 * Try to keep the output length from changing frequently so that the
617 * output lines up more nicely.
618 */
619 if (len > spacing || (len && len < spacing - 52))
620 spacing = round_up(len + 4, 32);
621
622 if (len < spacing)
623 printf("%*s", spacing - len, "");
624}
625
Arnaldo Carvalho de Meloa3dff302016-03-23 11:55:24 -0300626static void print_sample_bts(struct perf_sample *sample,
Akihiro Nagai95582592012-01-30 13:43:09 +0900627 struct perf_evsel *evsel,
Adrian Huntera2cb3cf2013-12-04 16:16:36 +0200628 struct thread *thread,
629 struct addr_location *al)
Akihiro Nagai95582592012-01-30 13:43:09 +0900630{
631 struct perf_event_attr *attr = &evsel->attr;
Adrian Hunter8066be5f2014-07-22 16:17:15 +0300632 bool print_srcline_last = false;
Akihiro Nagai95582592012-01-30 13:43:09 +0900633
Adrian Huntere2167082016-06-23 16:40:58 +0300634 if (PRINT_FIELD(CALLINDENT))
635 print_sample_callindent(sample, evsel, thread, al);
636
Akihiro Nagai95582592012-01-30 13:43:09 +0900637 /* print branch_from information */
638 if (PRINT_FIELD(IP)) {
Adrian Hunter8066be5f2014-07-22 16:17:15 +0300639 unsigned int print_opts = output[attr->type].print_ip_opts;
Chris Phlipote557b672016-04-19 19:32:11 -0700640 struct callchain_cursor *cursor = NULL;
Adrian Hunter8066be5f2014-07-22 16:17:15 +0300641
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -0300642 if (symbol_conf.use_callchain && sample->callchain &&
Chris Phlipote557b672016-04-19 19:32:11 -0700643 thread__resolve_callchain(al->thread, &callchain_cursor, evsel,
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -0300644 sample, NULL, NULL, scripting_max_stack) == 0)
Chris Phlipote557b672016-04-19 19:32:11 -0700645 cursor = &callchain_cursor;
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -0300646
647 if (cursor == NULL) {
648 putchar(' ');
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300649 if (print_opts & EVSEL__PRINT_SRCLINE) {
Adrian Hunter8066be5f2014-07-22 16:17:15 +0300650 print_srcline_last = true;
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300651 print_opts &= ~EVSEL__PRINT_SRCLINE;
Adrian Hunter8066be5f2014-07-22 16:17:15 +0300652 }
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -0300653 } else
654 putchar('\n');
655
656 sample__fprintf_sym(sample, al, 0, print_opts, cursor, stdout);
Akihiro Nagai95582592012-01-30 13:43:09 +0900657 }
658
Akihiro Nagai95582592012-01-30 13:43:09 +0900659 /* print branch_to information */
Adrian Hunter243be3d2013-10-18 15:29:14 +0300660 if (PRINT_FIELD(ADDR) ||
661 ((evsel->attr.sample_type & PERF_SAMPLE_ADDR) &&
Adrian Hunter578bea42014-07-22 16:17:16 +0300662 !output[attr->type].user_set)) {
663 printf(" => ");
Arnaldo Carvalho de Meloa3dff302016-03-23 11:55:24 -0300664 print_sample_addr(sample, thread, attr);
Adrian Hunter578bea42014-07-22 16:17:16 +0300665 }
Akihiro Nagai95582592012-01-30 13:43:09 +0900666
Adrian Hunter8066be5f2014-07-22 16:17:15 +0300667 if (print_srcline_last)
668 map__fprintf_srcline(al->map, al->addr, "\n ", stdout);
669
Akihiro Nagai95582592012-01-30 13:43:09 +0900670 printf("\n");
671}
672
Adrian Hunter055cd332016-06-23 16:40:56 +0300673static struct {
674 u32 flags;
675 const char *name;
676} sample_flags[] = {
677 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL, "call"},
678 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN, "return"},
679 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CONDITIONAL, "jcc"},
680 {PERF_IP_FLAG_BRANCH, "jmp"},
681 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_INTERRUPT, "int"},
682 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | PERF_IP_FLAG_INTERRUPT, "iret"},
683 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_SYSCALLRET, "syscall"},
684 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | PERF_IP_FLAG_SYSCALLRET, "sysret"},
685 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_ASYNC, "async"},
686 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_ASYNC | PERF_IP_FLAG_INTERRUPT, "hw int"},
687 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TX_ABORT, "tx abrt"},
688 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TRACE_BEGIN, "tr strt"},
689 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TRACE_END, "tr end"},
690 {0, NULL}
691};
692
Adrian Hunter400ea6d2015-04-09 18:54:05 +0300693static void print_sample_flags(u32 flags)
694{
695 const char *chars = PERF_IP_FLAG_CHARS;
696 const int n = strlen(PERF_IP_FLAG_CHARS);
Adrian Hunter055cd332016-06-23 16:40:56 +0300697 bool in_tx = flags & PERF_IP_FLAG_IN_TX;
698 const char *name = NULL;
Adrian Hunter400ea6d2015-04-09 18:54:05 +0300699 char str[33];
700 int i, pos = 0;
701
Adrian Hunter055cd332016-06-23 16:40:56 +0300702 for (i = 0; sample_flags[i].name ; i++) {
703 if (sample_flags[i].flags == (flags & ~PERF_IP_FLAG_IN_TX)) {
704 name = sample_flags[i].name;
705 break;
706 }
707 }
708
Adrian Hunter400ea6d2015-04-09 18:54:05 +0300709 for (i = 0; i < n; i++, flags >>= 1) {
710 if (flags & 1)
711 str[pos++] = chars[i];
712 }
713 for (; i < 32; i++, flags >>= 1) {
714 if (flags & 1)
715 str[pos++] = '?';
716 }
717 str[pos] = 0;
Adrian Hunter055cd332016-06-23 16:40:56 +0300718
719 if (name)
720 printf(" %-7s%4s ", name, in_tx ? "(x)" : "");
721 else
722 printf(" %-11s ", str);
Adrian Hunter400ea6d2015-04-09 18:54:05 +0300723}
724
Wang Nan30372f02016-02-24 11:20:45 +0000725struct printer_data {
726 int line_no;
727 bool hit_nul;
728 bool is_printable;
729};
730
731static void
732print_sample_bpf_output_printer(enum binary_printer_ops op,
733 unsigned int val,
734 void *extra)
735{
736 unsigned char ch = (unsigned char)val;
737 struct printer_data *printer_data = extra;
738
739 switch (op) {
740 case BINARY_PRINT_DATA_BEGIN:
741 printf("\n");
742 break;
743 case BINARY_PRINT_LINE_BEGIN:
744 printf("%17s", !printer_data->line_no ? "BPF output:" :
745 " ");
746 break;
747 case BINARY_PRINT_ADDR:
748 printf(" %04x:", val);
749 break;
750 case BINARY_PRINT_NUM_DATA:
751 printf(" %02x", val);
752 break;
753 case BINARY_PRINT_NUM_PAD:
754 printf(" ");
755 break;
756 case BINARY_PRINT_SEP:
757 printf(" ");
758 break;
759 case BINARY_PRINT_CHAR_DATA:
760 if (printer_data->hit_nul && ch)
761 printer_data->is_printable = false;
762
763 if (!isprint(ch)) {
764 printf("%c", '.');
765
766 if (!printer_data->is_printable)
767 break;
768
769 if (ch == '\0')
770 printer_data->hit_nul = true;
771 else
772 printer_data->is_printable = false;
773 } else {
774 printf("%c", ch);
775 }
776 break;
777 case BINARY_PRINT_CHAR_PAD:
778 printf(" ");
779 break;
780 case BINARY_PRINT_LINE_END:
781 printf("\n");
782 printer_data->line_no++;
783 break;
784 case BINARY_PRINT_DATA_END:
785 default:
786 break;
787 }
788}
789
790static void print_sample_bpf_output(struct perf_sample *sample)
791{
792 unsigned int nr_bytes = sample->raw_size;
793 struct printer_data printer_data = {0, false, true};
794
795 print_binary(sample->raw_data, nr_bytes, 8,
796 print_sample_bpf_output_printer, &printer_data);
797
798 if (printer_data.is_printable && printer_data.hit_nul)
799 printf("%17s \"%s\"\n", "BPF string:",
800 (char *)(sample->raw_data));
801}
802
Jiri Olsa809e9422015-11-26 18:55:21 +0100803struct perf_script {
804 struct perf_tool tool;
805 struct perf_session *session;
806 bool show_task_events;
807 bool show_mmap_events;
808 bool show_switch_events;
Jiri Olsacfc88742016-01-05 22:09:06 +0100809 bool allocated;
810 struct cpu_map *cpus;
811 struct thread_map *threads;
Jiri Olsa9cdbc402016-01-07 10:14:05 +0100812 int name_width;
Jiri Olsa809e9422015-11-26 18:55:21 +0100813};
814
Jiri Olsa9cdbc402016-01-07 10:14:05 +0100815static int perf_evlist__max_name_len(struct perf_evlist *evlist)
816{
817 struct perf_evsel *evsel;
818 int max = 0;
819
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300820 evlist__for_each_entry(evlist, evsel) {
Jiri Olsa9cdbc402016-01-07 10:14:05 +0100821 int len = strlen(perf_evsel__name(evsel));
822
823 max = MAX(len, max);
824 }
825
826 return max;
827}
828
Jiri Olsac19ac912016-02-24 09:46:54 +0100829static size_t data_src__printf(u64 data_src)
830{
831 struct mem_info mi = { .data_src.val = data_src };
832 char decode[100];
833 char out[100];
834 static int maxlen;
835 int len;
836
837 perf_script__meminfo_scnprintf(decode, 100, &mi);
838
839 len = scnprintf(out, 100, "%16" PRIx64 " %s", data_src, decode);
840 if (maxlen < len)
841 maxlen = len;
842
843 return printf("%-*s", maxlen, out);
844}
845
Arnaldo Carvalho de Meloa3dff302016-03-23 11:55:24 -0300846static void process_event(struct perf_script *script,
Jiri Olsa809e9422015-11-26 18:55:21 +0100847 struct perf_sample *sample, struct perf_evsel *evsel,
848 struct addr_location *al)
David Ahernbe6d8422011-03-09 22:23:23 -0700849{
Arnaldo Carvalho de Melof9d5d542015-04-01 13:29:25 -0300850 struct thread *thread = al->thread;
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300851 struct perf_event_attr *attr = &evsel->attr;
David Ahern1424dc92011-03-09 22:23:28 -0700852
David Ahern2c9e45f72011-03-17 10:03:21 -0600853 if (output[attr->type].fields == 0)
David Ahern1424dc92011-03-09 22:23:28 -0700854 return;
855
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -0300856 print_sample_start(sample, thread, evsel);
David Ahern745f43e2011-03-09 22:23:26 -0700857
Jiri Olsa535aeaa2014-08-25 16:45:42 +0200858 if (PRINT_FIELD(PERIOD))
859 printf("%10" PRIu64 " ", sample->period);
860
Namhyung Kime944d3d2013-11-18 14:34:52 +0900861 if (PRINT_FIELD(EVNAME)) {
862 const char *evname = perf_evsel__name(evsel);
Jiri Olsa9cdbc402016-01-07 10:14:05 +0100863
864 if (!script->name_width)
865 script->name_width = perf_evlist__max_name_len(script->session->evlist);
866
867 printf("%*s: ", script->name_width,
868 evname ? evname : "[unknown]");
Namhyung Kime944d3d2013-11-18 14:34:52 +0900869 }
870
Adrian Hunter400ea6d2015-04-09 18:54:05 +0300871 if (print_flags)
872 print_sample_flags(sample->flags);
873
Akihiro Nagai95582592012-01-30 13:43:09 +0900874 if (is_bts_event(attr)) {
Arnaldo Carvalho de Meloa3dff302016-03-23 11:55:24 -0300875 print_sample_bts(sample, evsel, thread, al);
Akihiro Nagai95582592012-01-30 13:43:09 +0900876 return;
877 }
878
David Ahern745f43e2011-03-09 22:23:26 -0700879 if (PRINT_FIELD(TRACE))
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -0300880 event_format__print(evsel->tp_format, sample->cpu,
881 sample->raw_data, sample->raw_size);
David Ahern7cec0922011-05-30 13:08:23 -0600882 if (PRINT_FIELD(ADDR))
Arnaldo Carvalho de Meloa3dff302016-03-23 11:55:24 -0300883 print_sample_addr(sample, thread, attr);
David Ahern7cec0922011-05-30 13:08:23 -0600884
Jiri Olsa94ddddf2016-02-15 09:34:51 +0100885 if (PRINT_FIELD(DATA_SRC))
Jiri Olsac19ac912016-02-24 09:46:54 +0100886 data_src__printf(sample->data_src);
Jiri Olsa94ddddf2016-02-15 09:34:51 +0100887
888 if (PRINT_FIELD(WEIGHT))
889 printf("%16" PRIu64, sample->weight);
890
David Ahern787bef12011-05-27 14:28:43 -0600891 if (PRINT_FIELD(IP)) {
Chris Phlipote557b672016-04-19 19:32:11 -0700892 struct callchain_cursor *cursor = NULL;
David Aherna6ffaf92013-08-07 22:50:51 -0400893
Arnaldo Carvalho de Melo92231522016-04-18 11:31:46 -0300894 if (symbol_conf.use_callchain && sample->callchain &&
Chris Phlipote557b672016-04-19 19:32:11 -0700895 thread__resolve_callchain(al->thread, &callchain_cursor, evsel,
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -0300896 sample, NULL, NULL, scripting_max_stack) == 0)
Chris Phlipote557b672016-04-19 19:32:11 -0700897 cursor = &callchain_cursor;
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -0300898
899 putchar(cursor ? '\n' : ' ');
900 sample__fprintf_sym(sample, al, 0, output[attr->type].print_ip_opts, cursor, stdout);
David Ahernc0230b22011-03-09 22:23:27 -0700901 }
902
Stephane Eranianfc36f942015-08-31 18:41:10 +0200903 if (PRINT_FIELD(IREGS))
Arnaldo Carvalho de Meloa3dff302016-03-23 11:55:24 -0300904 print_sample_iregs(sample, attr);
Stephane Eranianfc36f942015-08-31 18:41:10 +0200905
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200906 if (PRINT_FIELD(BRSTACK))
Arnaldo Carvalho de Meloa3dff302016-03-23 11:55:24 -0300907 print_sample_brstack(sample);
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200908 else if (PRINT_FIELD(BRSTACKSYM))
Arnaldo Carvalho de Meloa3dff302016-03-23 11:55:24 -0300909 print_sample_brstacksym(sample, thread);
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200910
Wang Nan30372f02016-02-24 11:20:45 +0000911 if (perf_evsel__is_bpf_output(evsel) && PRINT_FIELD(BPF_OUTPUT))
912 print_sample_bpf_output(sample);
913
David Ahernc70c94b2011-03-09 22:23:25 -0700914 printf("\n");
David Ahernbe6d8422011-03-09 22:23:23 -0700915}
916
Tom Zanussi956ffd02009-11-25 01:15:46 -0600917static struct scripting_ops *scripting_ops;
918
Jiri Olsa36e33c52016-01-06 11:49:56 +0100919static void __process_stat(struct perf_evsel *counter, u64 tstamp)
920{
921 int nthreads = thread_map__nr(counter->threads);
922 int ncpus = perf_evsel__nr_cpus(counter);
923 int cpu, thread;
924 static int header_printed;
925
926 if (counter->system_wide)
927 nthreads = 1;
928
929 if (!header_printed) {
930 printf("%3s %8s %15s %15s %15s %15s %s\n",
931 "CPU", "THREAD", "VAL", "ENA", "RUN", "TIME", "EVENT");
932 header_printed = 1;
933 }
934
935 for (thread = 0; thread < nthreads; thread++) {
936 for (cpu = 0; cpu < ncpus; cpu++) {
937 struct perf_counts_values *counts;
938
939 counts = perf_counts(counter->counts, cpu, thread);
940
941 printf("%3d %8d %15" PRIu64 " %15" PRIu64 " %15" PRIu64 " %15" PRIu64 " %s\n",
942 counter->cpus->map[cpu],
943 thread_map__pid(counter->threads, thread),
944 counts->val,
945 counts->ena,
946 counts->run,
947 tstamp,
948 perf_evsel__name(counter));
949 }
950 }
951}
952
Jiri Olsae099eba2016-01-05 22:09:09 +0100953static void process_stat(struct perf_evsel *counter, u64 tstamp)
954{
955 if (scripting_ops && scripting_ops->process_stat)
956 scripting_ops->process_stat(&stat_config, counter, tstamp);
Jiri Olsa36e33c52016-01-06 11:49:56 +0100957 else
958 __process_stat(counter, tstamp);
Jiri Olsae099eba2016-01-05 22:09:09 +0100959}
960
961static void process_stat_interval(u64 tstamp)
962{
963 if (scripting_ops && scripting_ops->process_stat_interval)
964 scripting_ops->process_stat_interval(tstamp);
965}
966
Tom Zanussi956ffd02009-11-25 01:15:46 -0600967static void setup_scripting(void)
968{
Tom Zanussi16c632d2009-11-25 01:15:48 -0600969 setup_perl_scripting();
Tom Zanussi7e4b21b2010-01-27 02:27:57 -0600970 setup_python_scripting();
Tom Zanussi956ffd02009-11-25 01:15:46 -0600971}
972
Adrian Hunterd445dd22014-08-15 22:08:37 +0300973static int flush_scripting(void)
974{
Jiri Olsa2aaecfc2015-11-26 14:55:23 +0100975 return scripting_ops ? scripting_ops->flush_script() : 0;
Adrian Hunterd445dd22014-08-15 22:08:37 +0300976}
977
Tom Zanussi956ffd02009-11-25 01:15:46 -0600978static int cleanup_scripting(void)
979{
Ingo Molnar133dc4c2010-11-16 18:45:39 +0100980 pr_debug("\nperf script stopped\n");
Tom Zanussi3824a4e2010-05-09 23:46:57 -0500981
Jiri Olsa2aaecfc2015-11-26 14:55:23 +0100982 return scripting_ops ? scripting_ops->stop_script() : 0;
Tom Zanussi956ffd02009-11-25 01:15:46 -0600983}
984
Jiri Olsa809e9422015-11-26 18:55:21 +0100985static int process_sample_event(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200986 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200987 struct perf_sample *sample,
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300988 struct perf_evsel *evsel,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200989 struct machine *machine)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200990{
Jiri Olsa809e9422015-11-26 18:55:21 +0100991 struct perf_script *scr = container_of(tool, struct perf_script, tool);
David Aherne7984b72011-11-21 10:02:52 -0700992 struct addr_location al;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200993
David Ahern1424dc92011-03-09 22:23:28 -0700994 if (debug_mode) {
995 if (sample->time < last_timestamp) {
996 pr_err("Samples misordered, previous: %" PRIu64
997 " this: %" PRIu64 "\n", last_timestamp,
998 sample->time);
999 nr_unordered++;
Frederic Weisbeckere1889d72010-04-24 01:55:09 +02001000 }
David Ahern1424dc92011-03-09 22:23:28 -07001001 last_timestamp = sample->time;
1002 return 0;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001003 }
Anton Blanchard5d67be92011-07-04 21:57:50 +10001004
Arnaldo Carvalho de Melobb3eb562016-03-22 18:39:09 -03001005 if (machine__resolve(machine, &al, sample) < 0) {
David Aherne7984b72011-11-21 10:02:52 -07001006 pr_err("problem processing %d event, skipping it.\n",
1007 event->header.type);
1008 return -1;
1009 }
1010
1011 if (al.filtered)
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001012 goto out_put;
David Aherne7984b72011-11-21 10:02:52 -07001013
Anton Blanchard5d67be92011-07-04 21:57:50 +10001014 if (cpu_list && !test_bit(sample->cpu, cpu_bitmap))
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001015 goto out_put;
Anton Blanchard5d67be92011-07-04 21:57:50 +10001016
Jiri Olsa2aaecfc2015-11-26 14:55:23 +01001017 if (scripting_ops)
1018 scripting_ops->process_event(event, sample, evsel, &al);
1019 else
Arnaldo Carvalho de Meloa3dff302016-03-23 11:55:24 -03001020 process_event(scr, sample, evsel, &al);
Jiri Olsa2aaecfc2015-11-26 14:55:23 +01001021
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001022out_put:
1023 addr_location__put(&al);
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001024 return 0;
1025}
1026
Adrian Hunter7ea95722013-11-01 15:51:30 +02001027static int process_attr(struct perf_tool *tool, union perf_event *event,
1028 struct perf_evlist **pevlist)
1029{
1030 struct perf_script *scr = container_of(tool, struct perf_script, tool);
1031 struct perf_evlist *evlist;
1032 struct perf_evsel *evsel, *pos;
1033 int err;
1034
1035 err = perf_event__process_attr(tool, event, pevlist);
1036 if (err)
1037 return err;
1038
1039 evlist = *pevlist;
1040 evsel = perf_evlist__last(*pevlist);
1041
1042 if (evsel->attr.type >= PERF_TYPE_MAX)
1043 return 0;
1044
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03001045 evlist__for_each_entry(evlist, pos) {
Adrian Hunter7ea95722013-11-01 15:51:30 +02001046 if (pos->attr.type == evsel->attr.type && pos != evsel)
1047 return 0;
1048 }
1049
1050 set_print_ip_opts(&evsel->attr);
1051
Jiri Olsad2b5a312015-10-16 12:41:25 +02001052 if (evsel->attr.sample_type)
1053 err = perf_evsel__check_attr(evsel, scr->session);
1054
1055 return err;
Adrian Hunter7ea95722013-11-01 15:51:30 +02001056}
1057
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001058static int process_comm_event(struct perf_tool *tool,
1059 union perf_event *event,
1060 struct perf_sample *sample,
1061 struct machine *machine)
1062{
1063 struct thread *thread;
1064 struct perf_script *script = container_of(tool, struct perf_script, tool);
1065 struct perf_session *session = script->session;
Adrian Hunter06b234e2015-07-21 12:44:05 +03001066 struct perf_evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001067 int ret = -1;
1068
1069 thread = machine__findnew_thread(machine, event->comm.pid, event->comm.tid);
1070 if (thread == NULL) {
1071 pr_debug("problem processing COMM event, skipping it.\n");
1072 return -1;
1073 }
1074
1075 if (perf_event__process_comm(tool, event, sample, machine) < 0)
1076 goto out;
1077
1078 if (!evsel->attr.sample_id_all) {
1079 sample->cpu = 0;
1080 sample->time = 0;
1081 sample->tid = event->comm.tid;
1082 sample->pid = event->comm.pid;
1083 }
1084 print_sample_start(sample, thread, evsel);
1085 perf_event__fprintf(event, stdout);
1086 ret = 0;
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001087out:
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001088 thread__put(thread);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001089 return ret;
1090}
1091
1092static int process_fork_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 Kimad7ebb92013-11-26 17:51:12 +09001101
1102 if (perf_event__process_fork(tool, event, sample, machine) < 0)
1103 return -1;
1104
1105 thread = machine__findnew_thread(machine, event->fork.pid, event->fork.tid);
1106 if (thread == NULL) {
1107 pr_debug("problem processing FORK event, skipping it.\n");
1108 return -1;
1109 }
1110
1111 if (!evsel->attr.sample_id_all) {
1112 sample->cpu = 0;
1113 sample->time = event->fork.time;
1114 sample->tid = event->fork.tid;
1115 sample->pid = event->fork.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 Kimad7ebb92013-11-26 17:51:12 +09001120
1121 return 0;
1122}
1123static int process_exit_event(struct perf_tool *tool,
1124 union perf_event *event,
1125 struct perf_sample *sample,
1126 struct machine *machine)
1127{
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001128 int err = 0;
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001129 struct thread *thread;
1130 struct perf_script *script = container_of(tool, struct perf_script, tool);
1131 struct perf_session *session = script->session;
Adrian Hunter06b234e2015-07-21 12:44:05 +03001132 struct perf_evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001133
1134 thread = machine__findnew_thread(machine, event->fork.pid, event->fork.tid);
1135 if (thread == NULL) {
1136 pr_debug("problem processing EXIT event, skipping it.\n");
1137 return -1;
1138 }
1139
1140 if (!evsel->attr.sample_id_all) {
1141 sample->cpu = 0;
1142 sample->time = 0;
Adrian Hunter53ff6bc2015-08-18 12:07:05 +03001143 sample->tid = event->fork.tid;
1144 sample->pid = event->fork.pid;
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001145 }
1146 print_sample_start(sample, thread, evsel);
1147 perf_event__fprintf(event, stdout);
1148
1149 if (perf_event__process_exit(tool, event, sample, machine) < 0)
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001150 err = -1;
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001151
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001152 thread__put(thread);
1153 return err;
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001154}
1155
Namhyung Kimba1ddf42013-11-26 17:54:26 +09001156static int process_mmap_event(struct perf_tool *tool,
1157 union perf_event *event,
1158 struct perf_sample *sample,
1159 struct machine *machine)
1160{
1161 struct thread *thread;
1162 struct perf_script *script = container_of(tool, struct perf_script, tool);
1163 struct perf_session *session = script->session;
Adrian Hunter06b234e2015-07-21 12:44:05 +03001164 struct perf_evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
Namhyung Kimba1ddf42013-11-26 17:54:26 +09001165
1166 if (perf_event__process_mmap(tool, event, sample, machine) < 0)
1167 return -1;
1168
1169 thread = machine__findnew_thread(machine, event->mmap.pid, event->mmap.tid);
1170 if (thread == NULL) {
1171 pr_debug("problem processing MMAP event, skipping it.\n");
1172 return -1;
1173 }
1174
1175 if (!evsel->attr.sample_id_all) {
1176 sample->cpu = 0;
1177 sample->time = 0;
1178 sample->tid = event->mmap.tid;
1179 sample->pid = event->mmap.pid;
1180 }
1181 print_sample_start(sample, thread, evsel);
1182 perf_event__fprintf(event, stdout);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001183 thread__put(thread);
Namhyung Kimba1ddf42013-11-26 17:54:26 +09001184 return 0;
1185}
1186
1187static int process_mmap2_event(struct perf_tool *tool,
1188 union perf_event *event,
1189 struct perf_sample *sample,
1190 struct machine *machine)
1191{
1192 struct thread *thread;
1193 struct perf_script *script = container_of(tool, struct perf_script, tool);
1194 struct perf_session *session = script->session;
Adrian Hunter06b234e2015-07-21 12:44:05 +03001195 struct perf_evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
Namhyung Kimba1ddf42013-11-26 17:54:26 +09001196
1197 if (perf_event__process_mmap2(tool, event, sample, machine) < 0)
1198 return -1;
1199
1200 thread = machine__findnew_thread(machine, event->mmap2.pid, event->mmap2.tid);
1201 if (thread == NULL) {
1202 pr_debug("problem processing MMAP2 event, skipping it.\n");
1203 return -1;
1204 }
1205
1206 if (!evsel->attr.sample_id_all) {
1207 sample->cpu = 0;
1208 sample->time = 0;
1209 sample->tid = event->mmap2.tid;
1210 sample->pid = event->mmap2.pid;
1211 }
1212 print_sample_start(sample, thread, evsel);
1213 perf_event__fprintf(event, stdout);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001214 thread__put(thread);
Namhyung Kimba1ddf42013-11-26 17:54:26 +09001215 return 0;
1216}
1217
Adrian Hunter7c148982015-07-21 12:44:06 +03001218static int process_switch_event(struct perf_tool *tool,
1219 union perf_event *event,
1220 struct perf_sample *sample,
1221 struct machine *machine)
1222{
1223 struct thread *thread;
1224 struct perf_script *script = container_of(tool, struct perf_script, tool);
1225 struct perf_session *session = script->session;
1226 struct perf_evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
1227
1228 if (perf_event__process_switch(tool, event, sample, machine) < 0)
1229 return -1;
1230
1231 thread = machine__findnew_thread(machine, sample->pid,
1232 sample->tid);
1233 if (thread == NULL) {
1234 pr_debug("problem processing SWITCH event, skipping it.\n");
1235 return -1;
1236 }
1237
1238 print_sample_start(sample, thread, evsel);
1239 perf_event__fprintf(event, stdout);
1240 thread__put(thread);
1241 return 0;
1242}
1243
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001244static void sig_handler(int sig __maybe_unused)
Tom Zanussic239da32010-04-01 23:59:18 -05001245{
1246 session_done = 1;
1247}
1248
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03001249static int __cmd_script(struct perf_script *script)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001250{
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +02001251 int ret;
1252
Tom Zanussic239da32010-04-01 23:59:18 -05001253 signal(SIGINT, sig_handler);
1254
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001255 /* override event processing functions */
1256 if (script->show_task_events) {
1257 script->tool.comm = process_comm_event;
1258 script->tool.fork = process_fork_event;
1259 script->tool.exit = process_exit_event;
1260 }
Namhyung Kimba1ddf42013-11-26 17:54:26 +09001261 if (script->show_mmap_events) {
1262 script->tool.mmap = process_mmap_event;
1263 script->tool.mmap2 = process_mmap2_event;
1264 }
Adrian Hunter7c148982015-07-21 12:44:06 +03001265 if (script->show_switch_events)
1266 script->tool.context_switch = process_switch_event;
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001267
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -03001268 ret = perf_session__process_events(script->session);
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +02001269
Arnaldo Carvalho de Melo6d8afb52011-01-04 16:27:30 -02001270 if (debug_mode)
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -02001271 pr_err("Misordered timestamps: %" PRIu64 "\n", nr_unordered);
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +02001272
1273 return ret;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001274}
1275
Tom Zanussi956ffd02009-11-25 01:15:46 -06001276struct script_spec {
1277 struct list_head node;
1278 struct scripting_ops *ops;
1279 char spec[0];
1280};
1281
Arnaldo Carvalho de Meloeccdfe22011-01-04 16:32:52 -02001282static LIST_HEAD(script_specs);
Tom Zanussi956ffd02009-11-25 01:15:46 -06001283
1284static struct script_spec *script_spec__new(const char *spec,
1285 struct scripting_ops *ops)
1286{
1287 struct script_spec *s = malloc(sizeof(*s) + strlen(spec) + 1);
1288
1289 if (s != NULL) {
1290 strcpy(s->spec, spec);
1291 s->ops = ops;
1292 }
1293
1294 return s;
1295}
1296
Tom Zanussi956ffd02009-11-25 01:15:46 -06001297static void script_spec__add(struct script_spec *s)
1298{
1299 list_add_tail(&s->node, &script_specs);
1300}
1301
1302static struct script_spec *script_spec__find(const char *spec)
1303{
1304 struct script_spec *s;
1305
1306 list_for_each_entry(s, &script_specs, node)
1307 if (strcasecmp(s->spec, spec) == 0)
1308 return s;
1309 return NULL;
1310}
1311
Tom Zanussi956ffd02009-11-25 01:15:46 -06001312int script_spec_register(const char *spec, struct scripting_ops *ops)
1313{
1314 struct script_spec *s;
1315
1316 s = script_spec__find(spec);
1317 if (s)
1318 return -1;
1319
Taeung Song8560bae2016-02-26 00:13:10 +09001320 s = script_spec__new(spec, ops);
Tom Zanussi956ffd02009-11-25 01:15:46 -06001321 if (!s)
1322 return -1;
Taeung Song8560bae2016-02-26 00:13:10 +09001323 else
1324 script_spec__add(s);
Tom Zanussi956ffd02009-11-25 01:15:46 -06001325
1326 return 0;
1327}
1328
1329static struct scripting_ops *script_spec__lookup(const char *spec)
1330{
1331 struct script_spec *s = script_spec__find(spec);
1332 if (!s)
1333 return NULL;
1334
1335 return s->ops;
1336}
1337
1338static void list_available_languages(void)
1339{
1340 struct script_spec *s;
1341
1342 fprintf(stderr, "\n");
1343 fprintf(stderr, "Scripting language extensions (used in "
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001344 "perf script -s [spec:]script.[spec]):\n\n");
Tom Zanussi956ffd02009-11-25 01:15:46 -06001345
1346 list_for_each_entry(s, &script_specs, node)
1347 fprintf(stderr, " %-42s [%s]\n", s->spec, s->ops->name);
1348
1349 fprintf(stderr, "\n");
1350}
1351
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001352static int parse_scriptname(const struct option *opt __maybe_unused,
1353 const char *str, int unset __maybe_unused)
Tom Zanussi956ffd02009-11-25 01:15:46 -06001354{
1355 char spec[PATH_MAX];
1356 const char *script, *ext;
1357 int len;
1358
Tom Zanussif526d682010-01-27 02:27:52 -06001359 if (strcmp(str, "lang") == 0) {
Tom Zanussi956ffd02009-11-25 01:15:46 -06001360 list_available_languages();
Tom Zanussif526d682010-01-27 02:27:52 -06001361 exit(0);
Tom Zanussi956ffd02009-11-25 01:15:46 -06001362 }
1363
1364 script = strchr(str, ':');
1365 if (script) {
1366 len = script - str;
1367 if (len >= PATH_MAX) {
1368 fprintf(stderr, "invalid language specifier");
1369 return -1;
1370 }
1371 strncpy(spec, str, len);
1372 spec[len] = '\0';
1373 scripting_ops = script_spec__lookup(spec);
1374 if (!scripting_ops) {
1375 fprintf(stderr, "invalid language specifier");
1376 return -1;
1377 }
1378 script++;
1379 } else {
1380 script = str;
Ben Hutchingsd1e95bb2010-10-10 16:11:02 +01001381 ext = strrchr(script, '.');
Tom Zanussi956ffd02009-11-25 01:15:46 -06001382 if (!ext) {
1383 fprintf(stderr, "invalid script extension");
1384 return -1;
1385 }
1386 scripting_ops = script_spec__lookup(++ext);
1387 if (!scripting_ops) {
1388 fprintf(stderr, "invalid script extension");
1389 return -1;
1390 }
1391 }
1392
1393 script_name = strdup(script);
1394
1395 return 0;
1396}
1397
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001398static int parse_output_fields(const struct option *opt __maybe_unused,
1399 const char *arg, int unset __maybe_unused)
David Ahern745f43e2011-03-09 22:23:26 -07001400{
1401 char *tok;
Sasha Levin50ca19a2012-12-20 14:11:19 -05001402 int i, imax = ARRAY_SIZE(all_output_options);
David Ahern2c9e45f72011-03-17 10:03:21 -06001403 int j;
David Ahern745f43e2011-03-09 22:23:26 -07001404 int rc = 0;
1405 char *str = strdup(arg);
David Ahern1424dc92011-03-09 22:23:28 -07001406 int type = -1;
David Ahern745f43e2011-03-09 22:23:26 -07001407
1408 if (!str)
1409 return -ENOMEM;
1410
David Ahern2c9e45f72011-03-17 10:03:21 -06001411 /* first word can state for which event type the user is specifying
1412 * the fields. If no type exists, the specified fields apply to all
1413 * event types found in the file minus the invalid fields for a type.
David Ahern1424dc92011-03-09 22:23:28 -07001414 */
David Ahern2c9e45f72011-03-17 10:03:21 -06001415 tok = strchr(str, ':');
1416 if (tok) {
1417 *tok = '\0';
1418 tok++;
1419 if (!strcmp(str, "hw"))
1420 type = PERF_TYPE_HARDWARE;
1421 else if (!strcmp(str, "sw"))
1422 type = PERF_TYPE_SOFTWARE;
1423 else if (!strcmp(str, "trace"))
1424 type = PERF_TYPE_TRACEPOINT;
Arun Sharma0817a6a2011-04-14 10:38:18 -07001425 else if (!strcmp(str, "raw"))
1426 type = PERF_TYPE_RAW;
Wang Nan27cfef02015-12-08 02:25:43 +00001427 else if (!strcmp(str, "break"))
1428 type = PERF_TYPE_BREAKPOINT;
David Ahern2c9e45f72011-03-17 10:03:21 -06001429 else {
1430 fprintf(stderr, "Invalid event type in field string.\n");
Robert Richter38efb532011-11-25 11:38:40 +01001431 rc = -EINVAL;
1432 goto out;
David Ahern2c9e45f72011-03-17 10:03:21 -06001433 }
1434
1435 if (output[type].user_set)
1436 pr_warning("Overriding previous field request for %s events.\n",
1437 event_type(type));
1438
1439 output[type].fields = 0;
1440 output[type].user_set = true;
David Ahern9cbdb702011-04-06 21:54:20 -06001441 output[type].wildcard_set = false;
David Ahern2c9e45f72011-03-17 10:03:21 -06001442
1443 } else {
1444 tok = str;
1445 if (strlen(str) == 0) {
1446 fprintf(stderr,
1447 "Cannot set fields to 'none' for all event types.\n");
1448 rc = -EINVAL;
1449 goto out;
1450 }
1451
1452 if (output_set_by_user())
1453 pr_warning("Overriding previous field request for all events.\n");
1454
1455 for (j = 0; j < PERF_TYPE_MAX; ++j) {
1456 output[j].fields = 0;
1457 output[j].user_set = true;
David Ahern9cbdb702011-04-06 21:54:20 -06001458 output[j].wildcard_set = true;
David Ahern2c9e45f72011-03-17 10:03:21 -06001459 }
David Ahern1424dc92011-03-09 22:23:28 -07001460 }
1461
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001462 for (tok = strtok(tok, ","); tok; tok = strtok(NULL, ",")) {
David Ahern745f43e2011-03-09 22:23:26 -07001463 for (i = 0; i < imax; ++i) {
David Ahern2c9e45f72011-03-17 10:03:21 -06001464 if (strcmp(tok, all_output_options[i].str) == 0)
David Ahern745f43e2011-03-09 22:23:26 -07001465 break;
David Ahern745f43e2011-03-09 22:23:26 -07001466 }
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001467 if (i == imax && strcmp(tok, "flags") == 0) {
1468 print_flags = true;
1469 continue;
1470 }
David Ahern745f43e2011-03-09 22:23:26 -07001471 if (i == imax) {
David Ahern2c9e45f72011-03-17 10:03:21 -06001472 fprintf(stderr, "Invalid field requested.\n");
David Ahern745f43e2011-03-09 22:23:26 -07001473 rc = -EINVAL;
David Ahern2c9e45f72011-03-17 10:03:21 -06001474 goto out;
1475 }
1476
1477 if (type == -1) {
1478 /* add user option to all events types for
1479 * which it is valid
1480 */
1481 for (j = 0; j < PERF_TYPE_MAX; ++j) {
1482 if (output[j].invalid_fields & all_output_options[i].field) {
1483 pr_warning("\'%s\' not valid for %s events. Ignoring.\n",
1484 all_output_options[i].str, event_type(j));
1485 } else
1486 output[j].fields |= all_output_options[i].field;
1487 }
1488 } else {
1489 if (output[type].invalid_fields & all_output_options[i].field) {
1490 fprintf(stderr, "\'%s\' not valid for %s events.\n",
1491 all_output_options[i].str, event_type(type));
1492
1493 rc = -EINVAL;
1494 goto out;
1495 }
1496 output[type].fields |= all_output_options[i].field;
1497 }
David Ahern2c9e45f72011-03-17 10:03:21 -06001498 }
1499
1500 if (type >= 0) {
1501 if (output[type].fields == 0) {
1502 pr_debug("No fields requested for %s type. "
1503 "Events will not be displayed.\n", event_type(type));
David Ahern745f43e2011-03-09 22:23:26 -07001504 }
David Ahern1424dc92011-03-09 22:23:28 -07001505 }
David Ahern745f43e2011-03-09 22:23:26 -07001506
David Ahern2c9e45f72011-03-17 10:03:21 -06001507out:
David Ahern745f43e2011-03-09 22:23:26 -07001508 free(str);
1509 return rc;
1510}
1511
Shawn Bohrer008f29d2010-11-21 10:09:39 -06001512/* Helper function for filesystems that return a dent->d_type DT_UNKNOWN */
1513static int is_directory(const char *base_path, const struct dirent *dent)
1514{
1515 char path[PATH_MAX];
1516 struct stat st;
1517
1518 sprintf(path, "%s/%s", base_path, dent->d_name);
1519 if (stat(path, &st))
1520 return 0;
1521
1522 return S_ISDIR(st.st_mode);
1523}
1524
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001525#define for_each_lang(scripts_path, scripts_dir, lang_dirent) \
1526 while ((lang_dirent = readdir(scripts_dir)) != NULL) \
1527 if ((lang_dirent->d_type == DT_DIR || \
1528 (lang_dirent->d_type == DT_UNKNOWN && \
1529 is_directory(scripts_path, lang_dirent))) && \
1530 (strcmp(lang_dirent->d_name, ".")) && \
1531 (strcmp(lang_dirent->d_name, "..")))
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001532
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001533#define for_each_script(lang_path, lang_dir, script_dirent) \
1534 while ((script_dirent = readdir(lang_dir)) != NULL) \
1535 if (script_dirent->d_type != DT_DIR && \
1536 (script_dirent->d_type != DT_UNKNOWN || \
1537 !is_directory(lang_path, script_dirent)))
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001538
1539
1540#define RECORD_SUFFIX "-record"
1541#define REPORT_SUFFIX "-report"
1542
1543struct script_desc {
1544 struct list_head node;
1545 char *name;
1546 char *half_liner;
1547 char *args;
1548};
1549
Arnaldo Carvalho de Meloeccdfe22011-01-04 16:32:52 -02001550static LIST_HEAD(script_descs);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001551
1552static struct script_desc *script_desc__new(const char *name)
1553{
1554 struct script_desc *s = zalloc(sizeof(*s));
1555
Tom Zanussib5b87312010-11-10 08:16:51 -06001556 if (s != NULL && name)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001557 s->name = strdup(name);
1558
1559 return s;
1560}
1561
1562static void script_desc__delete(struct script_desc *s)
1563{
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -03001564 zfree(&s->name);
1565 zfree(&s->half_liner);
1566 zfree(&s->args);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001567 free(s);
1568}
1569
1570static void script_desc__add(struct script_desc *s)
1571{
1572 list_add_tail(&s->node, &script_descs);
1573}
1574
1575static struct script_desc *script_desc__find(const char *name)
1576{
1577 struct script_desc *s;
1578
1579 list_for_each_entry(s, &script_descs, node)
1580 if (strcasecmp(s->name, name) == 0)
1581 return s;
1582 return NULL;
1583}
1584
1585static struct script_desc *script_desc__findnew(const char *name)
1586{
1587 struct script_desc *s = script_desc__find(name);
1588
1589 if (s)
1590 return s;
1591
1592 s = script_desc__new(name);
1593 if (!s)
1594 goto out_delete_desc;
1595
1596 script_desc__add(s);
1597
1598 return s;
1599
1600out_delete_desc:
1601 script_desc__delete(s);
1602
1603 return NULL;
1604}
1605
Stephane Eranian965bb6b2010-12-03 17:52:01 +02001606static const char *ends_with(const char *str, const char *suffix)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001607{
1608 size_t suffix_len = strlen(suffix);
Stephane Eranian965bb6b2010-12-03 17:52:01 +02001609 const char *p = str;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001610
1611 if (strlen(str) > suffix_len) {
1612 p = str + strlen(str) - suffix_len;
1613 if (!strncmp(p, suffix, suffix_len))
1614 return p;
1615 }
1616
1617 return NULL;
1618}
1619
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001620static int read_script_info(struct script_desc *desc, const char *filename)
1621{
1622 char line[BUFSIZ], *p;
1623 FILE *fp;
1624
1625 fp = fopen(filename, "r");
1626 if (!fp)
1627 return -1;
1628
1629 while (fgets(line, sizeof(line), fp)) {
1630 p = ltrim(line);
1631 if (strlen(p) == 0)
1632 continue;
1633 if (*p != '#')
1634 continue;
1635 p++;
1636 if (strlen(p) && *p == '!')
1637 continue;
1638
1639 p = ltrim(p);
1640 if (strlen(p) && p[strlen(p) - 1] == '\n')
1641 p[strlen(p) - 1] = '\0';
1642
1643 if (!strncmp(p, "description:", strlen("description:"))) {
1644 p += strlen("description:");
1645 desc->half_liner = strdup(ltrim(p));
1646 continue;
1647 }
1648
1649 if (!strncmp(p, "args:", strlen("args:"))) {
1650 p += strlen("args:");
1651 desc->args = strdup(ltrim(p));
1652 continue;
1653 }
1654 }
1655
1656 fclose(fp);
1657
1658 return 0;
1659}
1660
Robert Richter38efb532011-11-25 11:38:40 +01001661static char *get_script_root(struct dirent *script_dirent, const char *suffix)
1662{
1663 char *script_root, *str;
1664
1665 script_root = strdup(script_dirent->d_name);
1666 if (!script_root)
1667 return NULL;
1668
1669 str = (char *)ends_with(script_root, suffix);
1670 if (!str) {
1671 free(script_root);
1672 return NULL;
1673 }
1674
1675 *str = '\0';
1676 return script_root;
1677}
1678
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001679static int list_available_scripts(const struct option *opt __maybe_unused,
1680 const char *s __maybe_unused,
1681 int unset __maybe_unused)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001682{
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001683 struct dirent *script_dirent, *lang_dirent;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001684 char scripts_path[MAXPATHLEN];
1685 DIR *scripts_dir, *lang_dir;
1686 char script_path[MAXPATHLEN];
1687 char lang_path[MAXPATHLEN];
1688 struct script_desc *desc;
1689 char first_half[BUFSIZ];
1690 char *script_root;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001691
Josh Poimboeuf46113a52015-12-15 09:39:37 -06001692 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", get_argv_exec_path());
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001693
1694 scripts_dir = opendir(scripts_path);
He Kuang88ded4d2016-08-04 11:25:42 +00001695 if (!scripts_dir) {
1696 fprintf(stdout,
1697 "open(%s) failed.\n"
1698 "Check \"PERF_EXEC_PATH\" env to set scripts dir.\n",
1699 scripts_path);
1700 exit(-1);
1701 }
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001702
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001703 for_each_lang(scripts_path, scripts_dir, lang_dirent) {
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001704 snprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path,
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001705 lang_dirent->d_name);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001706 lang_dir = opendir(lang_path);
1707 if (!lang_dir)
1708 continue;
1709
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001710 for_each_script(lang_path, lang_dir, script_dirent) {
1711 script_root = get_script_root(script_dirent, REPORT_SUFFIX);
Robert Richter38efb532011-11-25 11:38:40 +01001712 if (script_root) {
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001713 desc = script_desc__findnew(script_root);
1714 snprintf(script_path, MAXPATHLEN, "%s/%s",
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001715 lang_path, script_dirent->d_name);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001716 read_script_info(desc, script_path);
Robert Richter38efb532011-11-25 11:38:40 +01001717 free(script_root);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001718 }
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001719 }
1720 }
1721
1722 fprintf(stdout, "List of available trace scripts:\n");
1723 list_for_each_entry(desc, &script_descs, node) {
1724 sprintf(first_half, "%s %s", desc->name,
1725 desc->args ? desc->args : "");
1726 fprintf(stdout, " %-36s %s\n", first_half,
1727 desc->half_liner ? desc->half_liner : "");
1728 }
1729
1730 exit(0);
1731}
1732
Feng Tange5f37052012-09-07 16:42:26 +08001733/*
Feng Tang49e639e2012-10-30 11:56:03 +08001734 * Some scripts specify the required events in their "xxx-record" file,
1735 * this function will check if the events in perf.data match those
1736 * mentioned in the "xxx-record".
1737 *
1738 * Fixme: All existing "xxx-record" are all in good formats "-e event ",
1739 * which is covered well now. And new parsing code should be added to
1740 * cover the future complexing formats like event groups etc.
1741 */
1742static int check_ev_match(char *dir_name, char *scriptname,
1743 struct perf_session *session)
1744{
1745 char filename[MAXPATHLEN], evname[128];
1746 char line[BUFSIZ], *p;
1747 struct perf_evsel *pos;
1748 int match, len;
1749 FILE *fp;
1750
1751 sprintf(filename, "%s/bin/%s-record", dir_name, scriptname);
1752
1753 fp = fopen(filename, "r");
1754 if (!fp)
1755 return -1;
1756
1757 while (fgets(line, sizeof(line), fp)) {
1758 p = ltrim(line);
1759 if (*p == '#')
1760 continue;
1761
1762 while (strlen(p)) {
1763 p = strstr(p, "-e");
1764 if (!p)
1765 break;
1766
1767 p += 2;
1768 p = ltrim(p);
1769 len = strcspn(p, " \t");
1770 if (!len)
1771 break;
1772
1773 snprintf(evname, len + 1, "%s", p);
1774
1775 match = 0;
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03001776 evlist__for_each_entry(session->evlist, pos) {
Feng Tang49e639e2012-10-30 11:56:03 +08001777 if (!strcmp(perf_evsel__name(pos), evname)) {
1778 match = 1;
1779 break;
1780 }
1781 }
1782
1783 if (!match) {
1784 fclose(fp);
1785 return -1;
1786 }
1787 }
1788 }
1789
1790 fclose(fp);
1791 return 0;
1792}
1793
1794/*
Feng Tange5f37052012-09-07 16:42:26 +08001795 * Return -1 if none is found, otherwise the actual scripts number.
1796 *
1797 * Currently the only user of this function is the script browser, which
1798 * will list all statically runnable scripts, select one, execute it and
1799 * show the output in a perf browser.
1800 */
1801int find_scripts(char **scripts_array, char **scripts_path_array)
1802{
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001803 struct dirent *script_dirent, *lang_dirent;
Feng Tang49e639e2012-10-30 11:56:03 +08001804 char scripts_path[MAXPATHLEN], lang_path[MAXPATHLEN];
Feng Tange5f37052012-09-07 16:42:26 +08001805 DIR *scripts_dir, *lang_dir;
Feng Tang49e639e2012-10-30 11:56:03 +08001806 struct perf_session *session;
Jiri Olsaf5fc1412013-10-15 16:27:32 +02001807 struct perf_data_file file = {
1808 .path = input_name,
1809 .mode = PERF_DATA_MODE_READ,
1810 };
Feng Tange5f37052012-09-07 16:42:26 +08001811 char *temp;
1812 int i = 0;
1813
Jiri Olsaf5fc1412013-10-15 16:27:32 +02001814 session = perf_session__new(&file, false, NULL);
Feng Tang49e639e2012-10-30 11:56:03 +08001815 if (!session)
1816 return -1;
1817
Josh Poimboeuf46113a52015-12-15 09:39:37 -06001818 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", get_argv_exec_path());
Feng Tange5f37052012-09-07 16:42:26 +08001819
1820 scripts_dir = opendir(scripts_path);
Feng Tang49e639e2012-10-30 11:56:03 +08001821 if (!scripts_dir) {
1822 perf_session__delete(session);
Feng Tange5f37052012-09-07 16:42:26 +08001823 return -1;
Feng Tang49e639e2012-10-30 11:56:03 +08001824 }
Feng Tange5f37052012-09-07 16:42:26 +08001825
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001826 for_each_lang(scripts_path, scripts_dir, lang_dirent) {
Feng Tange5f37052012-09-07 16:42:26 +08001827 snprintf(lang_path, MAXPATHLEN, "%s/%s", scripts_path,
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001828 lang_dirent->d_name);
Feng Tange5f37052012-09-07 16:42:26 +08001829#ifdef NO_LIBPERL
1830 if (strstr(lang_path, "perl"))
1831 continue;
1832#endif
1833#ifdef NO_LIBPYTHON
1834 if (strstr(lang_path, "python"))
1835 continue;
1836#endif
1837
1838 lang_dir = opendir(lang_path);
1839 if (!lang_dir)
1840 continue;
1841
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001842 for_each_script(lang_path, lang_dir, script_dirent) {
Feng Tange5f37052012-09-07 16:42:26 +08001843 /* Skip those real time scripts: xxxtop.p[yl] */
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001844 if (strstr(script_dirent->d_name, "top."))
Feng Tange5f37052012-09-07 16:42:26 +08001845 continue;
1846 sprintf(scripts_path_array[i], "%s/%s", lang_path,
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001847 script_dirent->d_name);
1848 temp = strchr(script_dirent->d_name, '.');
Feng Tange5f37052012-09-07 16:42:26 +08001849 snprintf(scripts_array[i],
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001850 (temp - script_dirent->d_name) + 1,
1851 "%s", script_dirent->d_name);
Feng Tang49e639e2012-10-30 11:56:03 +08001852
1853 if (check_ev_match(lang_path,
1854 scripts_array[i], session))
1855 continue;
1856
Feng Tange5f37052012-09-07 16:42:26 +08001857 i++;
1858 }
Feng Tang49e639e2012-10-30 11:56:03 +08001859 closedir(lang_dir);
Feng Tange5f37052012-09-07 16:42:26 +08001860 }
1861
Feng Tang49e639e2012-10-30 11:56:03 +08001862 closedir(scripts_dir);
1863 perf_session__delete(session);
Feng Tange5f37052012-09-07 16:42:26 +08001864 return i;
1865}
1866
Tom Zanussi38752942009-12-15 02:53:39 -06001867static char *get_script_path(const char *script_root, const char *suffix)
1868{
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001869 struct dirent *script_dirent, *lang_dirent;
Tom Zanussi38752942009-12-15 02:53:39 -06001870 char scripts_path[MAXPATHLEN];
1871 char script_path[MAXPATHLEN];
1872 DIR *scripts_dir, *lang_dir;
1873 char lang_path[MAXPATHLEN];
Robert Richter38efb532011-11-25 11:38:40 +01001874 char *__script_root;
Tom Zanussi38752942009-12-15 02:53:39 -06001875
Josh Poimboeuf46113a52015-12-15 09:39:37 -06001876 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", get_argv_exec_path());
Tom Zanussi38752942009-12-15 02:53:39 -06001877
1878 scripts_dir = opendir(scripts_path);
1879 if (!scripts_dir)
1880 return NULL;
1881
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001882 for_each_lang(scripts_path, scripts_dir, lang_dirent) {
Tom Zanussi38752942009-12-15 02:53:39 -06001883 snprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path,
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001884 lang_dirent->d_name);
Tom Zanussi38752942009-12-15 02:53:39 -06001885 lang_dir = opendir(lang_path);
1886 if (!lang_dir)
1887 continue;
1888
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001889 for_each_script(lang_path, lang_dir, script_dirent) {
1890 __script_root = get_script_root(script_dirent, suffix);
Robert Richter38efb532011-11-25 11:38:40 +01001891 if (__script_root && !strcmp(script_root, __script_root)) {
1892 free(__script_root);
Namhyung Kim946ef2a2012-01-08 02:25:25 +09001893 closedir(lang_dir);
1894 closedir(scripts_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06001895 snprintf(script_path, MAXPATHLEN, "%s/%s",
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001896 lang_path, script_dirent->d_name);
Robert Richter38efb532011-11-25 11:38:40 +01001897 return strdup(script_path);
Tom Zanussi38752942009-12-15 02:53:39 -06001898 }
1899 free(__script_root);
1900 }
Namhyung Kim946ef2a2012-01-08 02:25:25 +09001901 closedir(lang_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06001902 }
Namhyung Kim946ef2a2012-01-08 02:25:25 +09001903 closedir(scripts_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06001904
Robert Richter38efb532011-11-25 11:38:40 +01001905 return NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06001906}
1907
Tom Zanussib5b87312010-11-10 08:16:51 -06001908static bool is_top_script(const char *script_path)
1909{
Stephane Eranian965bb6b2010-12-03 17:52:01 +02001910 return ends_with(script_path, "top") == NULL ? false : true;
Tom Zanussib5b87312010-11-10 08:16:51 -06001911}
1912
1913static int has_required_arg(char *script_path)
1914{
1915 struct script_desc *desc;
1916 int n_args = 0;
1917 char *p;
1918
1919 desc = script_desc__new(NULL);
1920
1921 if (read_script_info(desc, script_path))
1922 goto out;
1923
1924 if (!desc->args)
1925 goto out;
1926
1927 for (p = desc->args; *p; p++)
1928 if (*p == '<')
1929 n_args++;
1930out:
1931 script_desc__delete(desc);
1932
1933 return n_args;
1934}
1935
David Ahernd54b1a92012-08-26 12:24:46 -06001936static int have_cmd(int argc, const char **argv)
Tom Zanussi34c86ea2010-11-10 08:15:43 -06001937{
1938 char **__argv = malloc(sizeof(const char *) * argc);
1939
David Ahernd54b1a92012-08-26 12:24:46 -06001940 if (!__argv) {
1941 pr_err("malloc failed\n");
1942 return -1;
1943 }
1944
Tom Zanussi34c86ea2010-11-10 08:15:43 -06001945 memcpy(__argv, argv, sizeof(const char *) * argc);
1946 argc = parse_options(argc, (const char **)__argv, record_options,
1947 NULL, PARSE_OPT_STOP_AT_NON_OPTION);
1948 free(__argv);
1949
David Ahernd54b1a92012-08-26 12:24:46 -06001950 system_wide = (argc == 0);
1951
1952 return 0;
Tom Zanussi34c86ea2010-11-10 08:15:43 -06001953}
1954
Jiri Olsa7322d6c2015-08-13 09:17:24 +02001955static void script__setup_sample_type(struct perf_script *script)
1956{
1957 struct perf_session *session = script->session;
1958 u64 sample_type = perf_evlist__combined_sample_type(session->evlist);
1959
1960 if (symbol_conf.use_callchain || symbol_conf.cumulate_callchain) {
1961 if ((sample_type & PERF_SAMPLE_REGS_USER) &&
1962 (sample_type & PERF_SAMPLE_STACK_USER))
1963 callchain_param.record_mode = CALLCHAIN_DWARF;
1964 else if (sample_type & PERF_SAMPLE_BRANCH_STACK)
1965 callchain_param.record_mode = CALLCHAIN_LBR;
1966 else
1967 callchain_param.record_mode = CALLCHAIN_FP;
1968 }
1969}
1970
Jiri Olsae099eba2016-01-05 22:09:09 +01001971static int process_stat_round_event(struct perf_tool *tool __maybe_unused,
1972 union perf_event *event,
1973 struct perf_session *session)
1974{
1975 struct stat_round_event *round = &event->stat_round;
1976 struct perf_evsel *counter;
1977
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03001978 evlist__for_each_entry(session->evlist, counter) {
Jiri Olsae099eba2016-01-05 22:09:09 +01001979 perf_stat_process_counter(&stat_config, counter);
1980 process_stat(counter, round->time);
1981 }
1982
1983 process_stat_interval(round->time);
1984 return 0;
1985}
1986
Jiri Olsa91a2c3d2016-01-05 22:09:07 +01001987static int process_stat_config_event(struct perf_tool *tool __maybe_unused,
1988 union perf_event *event,
1989 struct perf_session *session __maybe_unused)
1990{
1991 perf_event__read_stat_config(&stat_config, &event->stat_config);
1992 return 0;
1993}
1994
Jiri Olsacfc88742016-01-05 22:09:06 +01001995static int set_maps(struct perf_script *script)
1996{
1997 struct perf_evlist *evlist = script->session->evlist;
1998
1999 if (!script->cpus || !script->threads)
2000 return 0;
2001
2002 if (WARN_ONCE(script->allocated, "stats double allocation\n"))
2003 return -EINVAL;
2004
2005 perf_evlist__set_maps(evlist, script->cpus, script->threads);
2006
2007 if (perf_evlist__alloc_stats(evlist, true))
2008 return -ENOMEM;
2009
2010 script->allocated = true;
2011 return 0;
2012}
2013
2014static
2015int process_thread_map_event(struct perf_tool *tool,
2016 union perf_event *event,
2017 struct perf_session *session __maybe_unused)
2018{
2019 struct perf_script *script = container_of(tool, struct perf_script, tool);
2020
2021 if (script->threads) {
2022 pr_warning("Extra thread map event, ignoring.\n");
2023 return 0;
2024 }
2025
2026 script->threads = thread_map__new_event(&event->thread_map);
2027 if (!script->threads)
2028 return -ENOMEM;
2029
2030 return set_maps(script);
2031}
2032
2033static
2034int process_cpu_map_event(struct perf_tool *tool __maybe_unused,
2035 union perf_event *event,
2036 struct perf_session *session __maybe_unused)
2037{
2038 struct perf_script *script = container_of(tool, struct perf_script, tool);
2039
2040 if (script->cpus) {
2041 pr_warning("Extra cpu map event, ignoring.\n");
2042 return 0;
2043 }
2044
2045 script->cpus = cpu_map__new_data(&event->cpu_map.data);
2046 if (!script->cpus)
2047 return -ENOMEM;
2048
2049 return set_maps(script);
2050}
2051
Irina Tirdea1d037ca2012-09-11 01:15:03 +03002052int cmd_script(int argc, const char **argv, const char *prefix __maybe_unused)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002053{
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03002054 bool show_full_info = false;
Jiri Olsae90debd2013-12-09 11:02:50 +01002055 bool header = false;
2056 bool header_only = false;
Namhyung Kim6cc870f2014-08-12 15:40:33 +09002057 bool script_started = false;
Tom Zanussib5b87312010-11-10 08:16:51 -06002058 char *rec_script_path = NULL;
2059 char *rep_script_path = NULL;
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02002060 struct perf_session *session;
Adrian Hunter7a680eb2015-04-09 18:53:56 +03002061 struct itrace_synth_opts itrace_synth_opts = { .set = false, };
Tom Zanussib5b87312010-11-10 08:16:51 -06002062 char *script_path = NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06002063 const char **__argv;
Namhyung Kim6cc870f2014-08-12 15:40:33 +09002064 int i, j, err = 0;
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03002065 struct perf_script script = {
2066 .tool = {
2067 .sample = process_sample_event,
2068 .mmap = perf_event__process_mmap,
2069 .mmap2 = perf_event__process_mmap2,
2070 .comm = perf_event__process_comm,
2071 .exit = perf_event__process_exit,
2072 .fork = perf_event__process_fork,
Adrian Hunter7ea95722013-11-01 15:51:30 +02002073 .attr = process_attr,
Jiri Olsa91daee32016-04-07 09:11:13 +02002074 .event_update = perf_event__process_event_update,
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03002075 .tracing_data = perf_event__process_tracing_data,
2076 .build_id = perf_event__process_build_id,
Adrian Hunter7a680eb2015-04-09 18:53:56 +03002077 .id_index = perf_event__process_id_index,
2078 .auxtrace_info = perf_event__process_auxtrace_info,
2079 .auxtrace = perf_event__process_auxtrace,
2080 .auxtrace_error = perf_event__process_auxtrace_error,
Jiri Olsae099eba2016-01-05 22:09:09 +01002081 .stat = perf_event__process_stat_event,
2082 .stat_round = process_stat_round_event,
Jiri Olsa91a2c3d2016-01-05 22:09:07 +01002083 .stat_config = process_stat_config_event,
Jiri Olsacfc88742016-01-05 22:09:06 +01002084 .thread_map = process_thread_map_event,
2085 .cpu_map = process_cpu_map_event,
Jiri Olsa0a8cb852014-07-06 14:18:21 +02002086 .ordered_events = true,
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03002087 .ordering_requires_timestamps = true,
2088 },
2089 };
Yunlong Song06af0f22015-04-02 21:47:16 +08002090 struct perf_data_file file = {
2091 .mode = PERF_DATA_MODE_READ,
2092 };
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03002093 const struct option options[] = {
2094 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
2095 "dump raw trace in ASCII"),
2096 OPT_INCR('v', "verbose", &verbose,
2097 "be more verbose (show symbol address, etc)"),
2098 OPT_BOOLEAN('L', "Latency", &latency_format,
2099 "show latency attributes (irqs/preemption disabled, etc)"),
2100 OPT_CALLBACK_NOOPT('l', "list", NULL, NULL, "list available scripts",
2101 list_available_scripts),
2102 OPT_CALLBACK('s', "script", NULL, "name",
2103 "script file name (lang:script name, script name, or *)",
2104 parse_scriptname),
2105 OPT_STRING('g', "gen-script", &generate_script_lang, "lang",
2106 "generate perf-script.xx script in specified language"),
2107 OPT_STRING('i', "input", &input_name, "file", "input file name"),
2108 OPT_BOOLEAN('d', "debug-mode", &debug_mode,
2109 "do various checks like samples ordering and lost events"),
Jiri Olsae90debd2013-12-09 11:02:50 +01002110 OPT_BOOLEAN(0, "header", &header, "Show data header."),
2111 OPT_BOOLEAN(0, "header-only", &header_only, "Show only data header."),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03002112 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
2113 "file", "vmlinux pathname"),
2114 OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name,
2115 "file", "kallsyms pathname"),
2116 OPT_BOOLEAN('G', "hide-call-graph", &no_callchain,
2117 "When printing symbols do not display call chain"),
He Kuanga7066702016-05-19 11:47:37 +00002118 OPT_CALLBACK(0, "symfs", NULL, "directory",
2119 "Look for files with symbols relative to this directory",
2120 symbol__config_symfs),
Yunlong Song06af0f22015-04-02 21:47:16 +08002121 OPT_CALLBACK('F', "fields", NULL, "str",
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03002122 "comma separated output fields prepend with 'type:'. "
2123 "Valid types: hw,sw,trace,raw. "
2124 "Fields: comm,tid,pid,time,cpu,event,trace,ip,sym,dso,"
Adrian Huntere2167082016-06-23 16:40:58 +03002125 "addr,symoff,period,iregs,brstack,brstacksym,flags,"
Brendan Greggbcdc09a2016-08-03 02:47:49 +00002126 "bpf-output,callindent", parse_output_fields),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03002127 OPT_BOOLEAN('a', "all-cpus", &system_wide,
2128 "system-wide collection from all CPUs"),
2129 OPT_STRING('S', "symbols", &symbol_conf.sym_list_str, "symbol[,symbol...]",
2130 "only consider these symbols"),
2131 OPT_STRING('C', "cpu", &cpu_list, "cpu", "list of cpus to profile"),
2132 OPT_STRING('c', "comms", &symbol_conf.comm_list_str, "comm[,comm...]",
2133 "only display events for these comms"),
David Aherne03eaa42015-03-24 09:52:41 -06002134 OPT_STRING(0, "pid", &symbol_conf.pid_list_str, "pid[,pid...]",
2135 "only consider symbols in these pids"),
2136 OPT_STRING(0, "tid", &symbol_conf.tid_list_str, "tid[,tid...]",
2137 "only consider symbols in these tids"),
Arnaldo Carvalho de Melo6125cc82016-04-14 18:15:18 -03002138 OPT_UINTEGER(0, "max-stack", &scripting_max_stack,
2139 "Set the maximum stack depth when parsing the callchain, "
2140 "anything beyond the specified depth will be ignored. "
Arnaldo Carvalho de Melo4cb93442016-04-27 10:16:24 -03002141 "Default: kernel.perf_event_max_stack or " __stringify(PERF_MAX_STACK_DEPTH)),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03002142 OPT_BOOLEAN('I', "show-info", &show_full_info,
2143 "display extended information from perf.data file"),
2144 OPT_BOOLEAN('\0', "show-kernel-path", &symbol_conf.show_kernel_path,
2145 "Show the path of [kernel.kallsyms]"),
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002146 OPT_BOOLEAN('\0', "show-task-events", &script.show_task_events,
2147 "Show the fork/comm/exit events"),
Namhyung Kimba1ddf42013-11-26 17:54:26 +09002148 OPT_BOOLEAN('\0', "show-mmap-events", &script.show_mmap_events,
2149 "Show the mmap events"),
Adrian Hunter7c148982015-07-21 12:44:06 +03002150 OPT_BOOLEAN('\0', "show-switch-events", &script.show_switch_events,
2151 "Show context switch events (if recorded)"),
Yunlong Song06af0f22015-04-02 21:47:16 +08002152 OPT_BOOLEAN('f', "force", &file.force, "don't complain, do it"),
Adrian Hunter83e19862015-09-25 16:15:36 +03002153 OPT_BOOLEAN(0, "ns", &nanosecs,
2154 "Use 9 decimal places when displaying time"),
Adrian Hunter7a680eb2015-04-09 18:53:56 +03002155 OPT_CALLBACK_OPTARG(0, "itrace", &itrace_synth_opts, NULL, "opts",
2156 "Instruction Tracing options",
2157 itrace_parse_synth_opts),
Andi Kleena9710ba2015-08-07 15:24:05 -07002158 OPT_BOOLEAN(0, "full-source-path", &srcline_full_filename,
2159 "Show full source file name path for source lines"),
Mark Drayton77e00702015-08-26 12:18:15 -07002160 OPT_BOOLEAN(0, "demangle", &symbol_conf.demangle,
2161 "Enable symbol demangling"),
2162 OPT_BOOLEAN(0, "demangle-kernel", &symbol_conf.demangle_kernel,
2163 "Enable kernel symbol demangling"),
2164
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03002165 OPT_END()
2166 };
Yunlong Song40cae2b2015-03-18 21:35:54 +08002167 const char * const script_subcommands[] = { "record", "report", NULL };
2168 const char *script_usage[] = {
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03002169 "perf script [<options>]",
2170 "perf script [<options>] record <script> [<record-options>] <command>",
2171 "perf script [<options>] report <script> [script-args]",
2172 "perf script [<options>] <script> [<record-options>] <command>",
2173 "perf script [<options>] <top-script> [script-args]",
2174 NULL
2175 };
Tom Zanussi38752942009-12-15 02:53:39 -06002176
Tom Zanussib5b87312010-11-10 08:16:51 -06002177 setup_scripting();
2178
Yunlong Song40cae2b2015-03-18 21:35:54 +08002179 argc = parse_options_subcommand(argc, argv, options, script_subcommands, script_usage,
Tom Zanussib5b87312010-11-10 08:16:51 -06002180 PARSE_OPT_STOP_AT_NON_OPTION);
2181
Jiri Olsaf5fc1412013-10-15 16:27:32 +02002182 file.path = input_name;
2183
Tom Zanussib5b87312010-11-10 08:16:51 -06002184 if (argc > 1 && !strncmp(argv[0], "rec", strlen("rec"))) {
2185 rec_script_path = get_script_path(argv[1], RECORD_SUFFIX);
2186 if (!rec_script_path)
2187 return cmd_record(argc, argv, NULL);
Tom Zanussi38752942009-12-15 02:53:39 -06002188 }
2189
Tom Zanussib5b87312010-11-10 08:16:51 -06002190 if (argc > 1 && !strncmp(argv[0], "rep", strlen("rep"))) {
2191 rep_script_path = get_script_path(argv[1], REPORT_SUFFIX);
2192 if (!rep_script_path) {
Tom Zanussi38752942009-12-15 02:53:39 -06002193 fprintf(stderr,
Tom Zanussib5b87312010-11-10 08:16:51 -06002194 "Please specify a valid report script"
Ingo Molnar133dc4c2010-11-16 18:45:39 +01002195 "(see 'perf script -l' for listing)\n");
Tom Zanussi38752942009-12-15 02:53:39 -06002196 return -1;
2197 }
Tom Zanussi38752942009-12-15 02:53:39 -06002198 }
2199
Adrian Hunter3c5b6452015-09-25 16:15:51 +03002200 if (itrace_synth_opts.callchain &&
2201 itrace_synth_opts.callchain_sz > scripting_max_stack)
2202 scripting_max_stack = itrace_synth_opts.callchain_sz;
2203
Ben Hutchings44e668c2010-10-10 16:10:03 +01002204 /* make sure PERF_EXEC_PATH is set for scripts */
Josh Poimboeuf46113a52015-12-15 09:39:37 -06002205 set_argv_exec_path(get_argv_exec_path());
Ben Hutchings44e668c2010-10-10 16:10:03 +01002206
Tom Zanussib5b87312010-11-10 08:16:51 -06002207 if (argc && !script_name && !rec_script_path && !rep_script_path) {
Tom Zanussia0cccc22010-04-01 23:59:25 -05002208 int live_pipe[2];
Tom Zanussib5b87312010-11-10 08:16:51 -06002209 int rep_args;
Tom Zanussia0cccc22010-04-01 23:59:25 -05002210 pid_t pid;
2211
Tom Zanussib5b87312010-11-10 08:16:51 -06002212 rec_script_path = get_script_path(argv[0], RECORD_SUFFIX);
2213 rep_script_path = get_script_path(argv[0], REPORT_SUFFIX);
2214
2215 if (!rec_script_path && !rep_script_path) {
Namhyung Kimc7118362015-10-25 00:49:27 +09002216 usage_with_options_msg(script_usage, options,
2217 "Couldn't find script `%s'\n\n See perf"
Ingo Molnar133dc4c2010-11-16 18:45:39 +01002218 " script -l for available scripts.\n", argv[0]);
Tom Zanussia0cccc22010-04-01 23:59:25 -05002219 }
2220
Tom Zanussib5b87312010-11-10 08:16:51 -06002221 if (is_top_script(argv[0])) {
2222 rep_args = argc - 1;
2223 } else {
2224 int rec_args;
2225
2226 rep_args = has_required_arg(rep_script_path);
2227 rec_args = (argc - 1) - rep_args;
2228 if (rec_args < 0) {
Namhyung Kimc7118362015-10-25 00:49:27 +09002229 usage_with_options_msg(script_usage, options,
2230 "`%s' script requires options."
Ingo Molnar133dc4c2010-11-16 18:45:39 +01002231 "\n\n See perf script -l for available "
Tom Zanussib5b87312010-11-10 08:16:51 -06002232 "scripts and options.\n", argv[0]);
Tom Zanussib5b87312010-11-10 08:16:51 -06002233 }
Tom Zanussia0cccc22010-04-01 23:59:25 -05002234 }
2235
2236 if (pipe(live_pipe) < 0) {
2237 perror("failed to create pipe");
David Ahernd54b1a92012-08-26 12:24:46 -06002238 return -1;
Tom Zanussia0cccc22010-04-01 23:59:25 -05002239 }
2240
2241 pid = fork();
2242 if (pid < 0) {
2243 perror("failed to fork");
David Ahernd54b1a92012-08-26 12:24:46 -06002244 return -1;
Tom Zanussia0cccc22010-04-01 23:59:25 -05002245 }
2246
2247 if (!pid) {
Tom Zanussib5b87312010-11-10 08:16:51 -06002248 j = 0;
2249
Tom Zanussia0cccc22010-04-01 23:59:25 -05002250 dup2(live_pipe[1], 1);
2251 close(live_pipe[0]);
2252
Robert Richter317df652011-11-25 15:05:25 +01002253 if (is_top_script(argv[0])) {
2254 system_wide = true;
2255 } else if (!system_wide) {
David Ahernd54b1a92012-08-26 12:24:46 -06002256 if (have_cmd(argc - rep_args, &argv[rep_args]) != 0) {
2257 err = -1;
2258 goto out;
2259 }
Robert Richter317df652011-11-25 15:05:25 +01002260 }
Tom Zanussib5b87312010-11-10 08:16:51 -06002261
2262 __argv = malloc((argc + 6) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06002263 if (!__argv) {
2264 pr_err("malloc failed\n");
2265 err = -ENOMEM;
2266 goto out;
2267 }
Tom Zanussie8719ad2010-11-10 07:52:32 -06002268
Tom Zanussib5b87312010-11-10 08:16:51 -06002269 __argv[j++] = "/bin/sh";
2270 __argv[j++] = rec_script_path;
2271 if (system_wide)
2272 __argv[j++] = "-a";
2273 __argv[j++] = "-q";
2274 __argv[j++] = "-o";
2275 __argv[j++] = "-";
2276 for (i = rep_args + 1; i < argc; i++)
2277 __argv[j++] = argv[i];
2278 __argv[j++] = NULL;
Tom Zanussia0cccc22010-04-01 23:59:25 -05002279
2280 execvp("/bin/sh", (char **)__argv);
Tom Zanussie8719ad2010-11-10 07:52:32 -06002281 free(__argv);
Tom Zanussia0cccc22010-04-01 23:59:25 -05002282 exit(-1);
2283 }
2284
2285 dup2(live_pipe[0], 0);
2286 close(live_pipe[1]);
2287
Tom Zanussib5b87312010-11-10 08:16:51 -06002288 __argv = malloc((argc + 4) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06002289 if (!__argv) {
2290 pr_err("malloc failed\n");
2291 err = -ENOMEM;
2292 goto out;
2293 }
2294
Tom Zanussib5b87312010-11-10 08:16:51 -06002295 j = 0;
Tom Zanussi34c86ea2010-11-10 08:15:43 -06002296 __argv[j++] = "/bin/sh";
Tom Zanussib5b87312010-11-10 08:16:51 -06002297 __argv[j++] = rep_script_path;
2298 for (i = 1; i < rep_args + 1; i++)
Tom Zanussi34c86ea2010-11-10 08:15:43 -06002299 __argv[j++] = argv[i];
Tom Zanussib5b87312010-11-10 08:16:51 -06002300 __argv[j++] = "-i";
2301 __argv[j++] = "-";
Tom Zanussi34c86ea2010-11-10 08:15:43 -06002302 __argv[j++] = NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06002303
2304 execvp("/bin/sh", (char **)__argv);
Tom Zanussie8719ad2010-11-10 07:52:32 -06002305 free(__argv);
Tom Zanussi38752942009-12-15 02:53:39 -06002306 exit(-1);
2307 }
Tom Zanussi956ffd02009-11-25 01:15:46 -06002308
Tom Zanussib5b87312010-11-10 08:16:51 -06002309 if (rec_script_path)
2310 script_path = rec_script_path;
2311 if (rep_script_path)
2312 script_path = rep_script_path;
Tom Zanussi956ffd02009-11-25 01:15:46 -06002313
Tom Zanussib5b87312010-11-10 08:16:51 -06002314 if (script_path) {
Tom Zanussib5b87312010-11-10 08:16:51 -06002315 j = 0;
2316
Robert Richter317df652011-11-25 15:05:25 +01002317 if (!rec_script_path)
2318 system_wide = false;
David Ahernd54b1a92012-08-26 12:24:46 -06002319 else if (!system_wide) {
2320 if (have_cmd(argc - 1, &argv[1]) != 0) {
2321 err = -1;
2322 goto out;
2323 }
2324 }
Tom Zanussib5b87312010-11-10 08:16:51 -06002325
2326 __argv = malloc((argc + 2) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06002327 if (!__argv) {
2328 pr_err("malloc failed\n");
2329 err = -ENOMEM;
2330 goto out;
2331 }
2332
Tom Zanussib5b87312010-11-10 08:16:51 -06002333 __argv[j++] = "/bin/sh";
2334 __argv[j++] = script_path;
2335 if (system_wide)
2336 __argv[j++] = "-a";
2337 for (i = 2; i < argc; i++)
2338 __argv[j++] = argv[i];
2339 __argv[j++] = NULL;
2340
2341 execvp("/bin/sh", (char **)__argv);
2342 free(__argv);
2343 exit(-1);
2344 }
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002345
Tom Zanussicf4fee52010-03-03 01:04:33 -06002346 if (!script_name)
2347 setup_pager();
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002348
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03002349 session = perf_session__new(&file, false, &script.tool);
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02002350 if (session == NULL)
Taeung Song52e028342014-09-24 10:33:37 +09002351 return -1;
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02002352
Jiri Olsae90debd2013-12-09 11:02:50 +01002353 if (header || header_only) {
2354 perf_session__fprintf_info(session, stdout, show_full_info);
2355 if (header_only)
Namhyung Kim6cc870f2014-08-12 15:40:33 +09002356 goto out_delete;
Jiri Olsae90debd2013-12-09 11:02:50 +01002357 }
2358
Namhyung Kim0a7e6d12014-08-12 15:40:45 +09002359 if (symbol__init(&session->header.env) < 0)
Namhyung Kim38520dc2014-08-12 15:40:42 +09002360 goto out_delete;
2361
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03002362 script.session = session;
Jiri Olsa7322d6c2015-08-13 09:17:24 +02002363 script__setup_sample_type(&script);
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03002364
Adrian Huntere2167082016-06-23 16:40:58 +03002365 if (output[PERF_TYPE_HARDWARE].fields & PERF_OUTPUT_CALLINDENT)
2366 itrace_synth_opts.thread_stack = true;
2367
Adrian Hunter7a680eb2015-04-09 18:53:56 +03002368 session->itrace_synth_opts = &itrace_synth_opts;
2369
Anton Blanchard5d67be92011-07-04 21:57:50 +10002370 if (cpu_list) {
Namhyung Kim6cc870f2014-08-12 15:40:33 +09002371 err = perf_session__cpu_bitmap(session, cpu_list, cpu_bitmap);
2372 if (err < 0)
2373 goto out_delete;
Anton Blanchard5d67be92011-07-04 21:57:50 +10002374 }
2375
David Ahern1424dc92011-03-09 22:23:28 -07002376 if (!no_callchain)
David Ahernc0230b22011-03-09 22:23:27 -07002377 symbol_conf.use_callchain = true;
2378 else
2379 symbol_conf.use_callchain = false;
2380
Arnaldo Carvalho de Melo9ee67422015-08-03 16:27:40 -03002381 if (session->tevent.pevent &&
2382 pevent_set_function_resolver(session->tevent.pevent,
Arnaldo Carvalho de Meloccb3a822015-07-22 16:43:37 -03002383 machine__resolve_kernel_addr,
2384 &session->machines.host) < 0) {
2385 pr_err("%s: failed to set libtraceevent function resolver\n", __func__);
2386 return -1;
2387 }
2388
Tom Zanussi956ffd02009-11-25 01:15:46 -06002389 if (generate_script_lang) {
2390 struct stat perf_stat;
David Ahern745f43e2011-03-09 22:23:26 -07002391 int input;
Tom Zanussi956ffd02009-11-25 01:15:46 -06002392
David Ahern2c9e45f72011-03-17 10:03:21 -06002393 if (output_set_by_user()) {
David Ahern745f43e2011-03-09 22:23:26 -07002394 fprintf(stderr,
2395 "custom fields not supported for generated scripts");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09002396 err = -EINVAL;
2397 goto out_delete;
David Ahern745f43e2011-03-09 22:23:26 -07002398 }
2399
Jiri Olsacc9784bd2013-10-15 16:27:34 +02002400 input = open(file.path, O_RDONLY); /* input_name */
Tom Zanussi956ffd02009-11-25 01:15:46 -06002401 if (input < 0) {
Namhyung Kim6cc870f2014-08-12 15:40:33 +09002402 err = -errno;
Tom Zanussi956ffd02009-11-25 01:15:46 -06002403 perror("failed to open file");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09002404 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06002405 }
2406
2407 err = fstat(input, &perf_stat);
2408 if (err < 0) {
2409 perror("failed to stat file");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09002410 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06002411 }
2412
2413 if (!perf_stat.st_size) {
2414 fprintf(stderr, "zero-sized file, nothing to do!\n");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09002415 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06002416 }
2417
2418 scripting_ops = script_spec__lookup(generate_script_lang);
2419 if (!scripting_ops) {
2420 fprintf(stderr, "invalid language specifier");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09002421 err = -ENOENT;
2422 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06002423 }
2424
Jiri Olsa29f5ffd2013-12-03 14:09:23 +01002425 err = scripting_ops->generate_script(session->tevent.pevent,
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03002426 "perf-script");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09002427 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06002428 }
2429
2430 if (script_name) {
Tom Zanussi586bc5c2009-12-15 02:53:35 -06002431 err = scripting_ops->start_script(script_name, argc, argv);
Tom Zanussi956ffd02009-11-25 01:15:46 -06002432 if (err)
Namhyung Kim6cc870f2014-08-12 15:40:33 +09002433 goto out_delete;
Ingo Molnar133dc4c2010-11-16 18:45:39 +01002434 pr_debug("perf script started with script %s\n\n", script_name);
Namhyung Kim6cc870f2014-08-12 15:40:33 +09002435 script_started = true;
Tom Zanussi956ffd02009-11-25 01:15:46 -06002436 }
2437
David Ahern9cbdb702011-04-06 21:54:20 -06002438
2439 err = perf_session__check_output_opt(session);
2440 if (err < 0)
Namhyung Kim6cc870f2014-08-12 15:40:33 +09002441 goto out_delete;
David Ahern9cbdb702011-04-06 21:54:20 -06002442
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03002443 err = __cmd_script(&script);
Tom Zanussi956ffd02009-11-25 01:15:46 -06002444
Adrian Hunterd445dd22014-08-15 22:08:37 +03002445 flush_scripting();
2446
Namhyung Kim6cc870f2014-08-12 15:40:33 +09002447out_delete:
Jiri Olsacfc88742016-01-05 22:09:06 +01002448 perf_evlist__free_stats(session->evlist);
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02002449 perf_session__delete(session);
Namhyung Kim6cc870f2014-08-12 15:40:33 +09002450
2451 if (script_started)
2452 cleanup_scripting();
Tom Zanussi956ffd02009-11-25 01:15:46 -06002453out:
2454 return err;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002455}