blob: a3add2cd7856ca20f24032547dff8ab3d122a646 [file] [log] [blame]
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001#include "builtin.h"
2
Andrea Gelminib7eead82010-08-05 15:51:38 +02003#include "perf.h"
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02004#include "util/cache.h"
Andrea Gelminib7eead82010-08-05 15:51:38 +02005#include "util/debug.h"
Josh Poimboeuf4b6ab942015-12-15 09:39:39 -06006#include <subcmd/exec-cmd.h>
Andrea Gelminib7eead82010-08-05 15:51:38 +02007#include "util/header.h"
Josh Poimboeuf4b6ab942015-12-15 09:39:39 -06008#include <subcmd/parse-options.h>
Stephane Eranianfc36f942015-08-31 18:41:10 +02009#include "util/perf_regs.h"
Andrea Gelminib7eead82010-08-05 15:51:38 +020010#include "util/session.h"
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020011#include "util/tool.h"
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +020012#include "util/symbol.h"
13#include "util/thread.h"
Ingo Molnarcf723442009-11-28 10:11:00 +010014#include "util/trace-event.h"
Andrea Gelminib7eead82010-08-05 15:51:38 +020015#include "util/util.h"
David Ahern1424dc92011-03-09 22:23:28 -070016#include "util/evlist.h"
17#include "util/evsel.h"
Feng Tang36385be2012-09-07 16:42:24 +080018#include "util/sort.h"
Jiri Olsaf5fc14122013-10-15 16:27:32 +020019#include "util/data.h"
Adrian Hunter7a680eb2015-04-09 18:53:56 +030020#include "util/auxtrace.h"
Jiri Olsacfc88742016-01-05 22:09:06 +010021#include "util/cpumap.h"
22#include "util/thread_map.h"
23#include "util/stat.h"
Arnaldo Carvalho de Meloa0675582017-04-17 16:51:59 -030024#include "util/string2.h"
Adrian Huntere2167082016-06-23 16:40:58 +030025#include "util/thread-stack.h"
David Aherna91f4c42016-11-29 10:15:43 -070026#include "util/time-utils.h"
Arnaldo Carvalho de Melofea01392017-04-17 16:23:22 -030027#include "print_binary.h"
Anton Blanchard5d67be92011-07-04 21:57:50 +100028#include <linux/bitmap.h>
Arnaldo Carvalho de Melo877a7a12017-04-17 11:39:06 -030029#include <linux/kernel.h>
Arnaldo Carvalho de Melo6125cc82016-04-14 18:15:18 -030030#include <linux/stringify.h>
Arnaldo Carvalho de Melobd48c632016-08-05 15:40:30 -030031#include <linux/time64.h>
Jiri Olsacfc88742016-01-05 22:09:06 +010032#include "asm/bug.h"
Jiri Olsac19ac912016-02-24 09:46:54 +010033#include "util/mem-events.h"
Andi Kleen48d02a12017-02-23 15:46:34 -080034#include "util/dump-insn.h"
Arnaldo Carvalho de Melo76b31a22017-04-18 12:26:44 -030035#include <dirent.h>
Arnaldo Carvalho de Meloa43783a2017-04-18 10:46:11 -030036#include <errno.h>
Arnaldo Carvalho de Melofd20e812017-04-17 15:23:08 -030037#include <inttypes.h>
Arnaldo Carvalho de Melo9607ad32017-04-19 15:49:18 -030038#include <signal.h>
Arnaldo Carvalho de Melo391e4202017-04-19 18:51:14 -030039#include <sys/param.h>
Arnaldo Carvalho de Melo7a8ef4c2017-04-19 20:57:47 -030040#include <sys/types.h>
41#include <sys/stat.h>
42#include <unistd.h>
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +020043
Arnaldo Carvalho de Melo3d689ed2017-04-17 16:10:49 -030044#include "sane_ctype.h"
45
Tom Zanussi956ffd02009-11-25 01:15:46 -060046static char const *script_name;
47static char const *generate_script_lang;
Frederic Weisbeckerffabd992010-05-27 16:27:47 +020048static bool debug_mode;
Frederic Weisbeckere1889d72010-04-24 01:55:09 +020049static u64 last_timestamp;
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +020050static u64 nr_unordered;
David Ahernc0230b22011-03-09 22:23:27 -070051static bool no_callchain;
Namhyung Kim47390ae2013-06-04 14:20:28 +090052static bool latency_format;
Robert Richter317df652011-11-25 15:05:25 +010053static bool system_wide;
Adrian Hunter400ea6d2015-04-09 18:54:05 +030054static bool print_flags;
Adrian Hunter83e19862015-09-25 16:15:36 +030055static bool nanosecs;
Anton Blanchard5d67be92011-07-04 21:57:50 +100056static const char *cpu_list;
57static DECLARE_BITMAP(cpu_bitmap, MAX_NR_CPUS);
Jiri Olsa91a2c3d2016-01-05 22:09:07 +010058static struct perf_stat_config stat_config;
Andi Kleen48d02a12017-02-23 15:46:34 -080059static int max_blocks;
Tom Zanussi956ffd02009-11-25 01:15:46 -060060
Adrian Hunter44cbe722015-09-25 16:15:50 +030061unsigned int scripting_max_stack = PERF_MAX_STACK_DEPTH;
Adrian Hunter03cd1fe2015-09-25 16:15:49 +030062
David Ahern745f43e2011-03-09 22:23:26 -070063enum perf_output_field {
64 PERF_OUTPUT_COMM = 1U << 0,
65 PERF_OUTPUT_TID = 1U << 1,
66 PERF_OUTPUT_PID = 1U << 2,
67 PERF_OUTPUT_TIME = 1U << 3,
68 PERF_OUTPUT_CPU = 1U << 4,
69 PERF_OUTPUT_EVNAME = 1U << 5,
70 PERF_OUTPUT_TRACE = 1U << 6,
David Ahern787bef12011-05-27 14:28:43 -060071 PERF_OUTPUT_IP = 1U << 7,
72 PERF_OUTPUT_SYM = 1U << 8,
David Ahern610723f2011-05-27 14:28:44 -060073 PERF_OUTPUT_DSO = 1U << 9,
David Ahern7cec0922011-05-30 13:08:23 -060074 PERF_OUTPUT_ADDR = 1U << 10,
Akihiro Nagaia978f2a2012-01-30 13:43:15 +090075 PERF_OUTPUT_SYMOFFSET = 1U << 11,
Adrian Huntercc8fae12013-12-06 09:42:57 +020076 PERF_OUTPUT_SRCLINE = 1U << 12,
Jiri Olsa535aeaae2014-08-25 16:45:42 +020077 PERF_OUTPUT_PERIOD = 1U << 13,
Stephane Eranianfc36f942015-08-31 18:41:10 +020078 PERF_OUTPUT_IREGS = 1U << 14,
Stephane Eraniandc323ce2015-08-31 18:41:13 +020079 PERF_OUTPUT_BRSTACK = 1U << 15,
80 PERF_OUTPUT_BRSTACKSYM = 1U << 16,
Jiri Olsa94ddddf2016-02-15 09:34:51 +010081 PERF_OUTPUT_DATA_SRC = 1U << 17,
82 PERF_OUTPUT_WEIGHT = 1U << 18,
Wang Nan30372f02016-02-24 11:20:45 +000083 PERF_OUTPUT_BPF_OUTPUT = 1U << 19,
Adrian Huntere2167082016-06-23 16:40:58 +030084 PERF_OUTPUT_CALLINDENT = 1U << 20,
Andi Kleen224e2c92016-10-07 16:42:27 +030085 PERF_OUTPUT_INSN = 1U << 21,
86 PERF_OUTPUT_INSNLEN = 1U << 22,
Andi Kleen48d02a12017-02-23 15:46:34 -080087 PERF_OUTPUT_BRSTACKINSN = 1U << 23,
Mark Santaniello106dacd2017-06-19 09:38:25 -070088 PERF_OUTPUT_BRSTACKOFF = 1U << 24,
Adrian Hunter47e78082017-05-26 11:17:22 +030089 PERF_OUTPUT_SYNTH = 1U << 25,
Kan Liang49d58f02017-08-29 13:11:11 -040090 PERF_OUTPUT_PHYS_ADDR = 1U << 26,
Andi Kleenb1491ac2017-09-05 11:40:57 -070091 PERF_OUTPUT_UREGS = 1U << 27,
David Ahern745f43e2011-03-09 22:23:26 -070092};
93
94struct output_option {
95 const char *str;
96 enum perf_output_field field;
97} all_output_options[] = {
98 {.str = "comm", .field = PERF_OUTPUT_COMM},
99 {.str = "tid", .field = PERF_OUTPUT_TID},
100 {.str = "pid", .field = PERF_OUTPUT_PID},
101 {.str = "time", .field = PERF_OUTPUT_TIME},
102 {.str = "cpu", .field = PERF_OUTPUT_CPU},
103 {.str = "event", .field = PERF_OUTPUT_EVNAME},
104 {.str = "trace", .field = PERF_OUTPUT_TRACE},
David Ahern787bef12011-05-27 14:28:43 -0600105 {.str = "ip", .field = PERF_OUTPUT_IP},
David Ahernc0230b22011-03-09 22:23:27 -0700106 {.str = "sym", .field = PERF_OUTPUT_SYM},
David Ahern610723f2011-05-27 14:28:44 -0600107 {.str = "dso", .field = PERF_OUTPUT_DSO},
David Ahern7cec0922011-05-30 13:08:23 -0600108 {.str = "addr", .field = PERF_OUTPUT_ADDR},
Akihiro Nagaia978f2a2012-01-30 13:43:15 +0900109 {.str = "symoff", .field = PERF_OUTPUT_SYMOFFSET},
Adrian Huntercc8fae12013-12-06 09:42:57 +0200110 {.str = "srcline", .field = PERF_OUTPUT_SRCLINE},
Jiri Olsa535aeaae2014-08-25 16:45:42 +0200111 {.str = "period", .field = PERF_OUTPUT_PERIOD},
Stephane Eranianfc36f942015-08-31 18:41:10 +0200112 {.str = "iregs", .field = PERF_OUTPUT_IREGS},
Andi Kleenb1491ac2017-09-05 11:40:57 -0700113 {.str = "uregs", .field = PERF_OUTPUT_UREGS},
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200114 {.str = "brstack", .field = PERF_OUTPUT_BRSTACK},
115 {.str = "brstacksym", .field = PERF_OUTPUT_BRSTACKSYM},
Jiri Olsa94ddddf2016-02-15 09:34:51 +0100116 {.str = "data_src", .field = PERF_OUTPUT_DATA_SRC},
117 {.str = "weight", .field = PERF_OUTPUT_WEIGHT},
Wang Nan30372f02016-02-24 11:20:45 +0000118 {.str = "bpf-output", .field = PERF_OUTPUT_BPF_OUTPUT},
Adrian Huntere2167082016-06-23 16:40:58 +0300119 {.str = "callindent", .field = PERF_OUTPUT_CALLINDENT},
Andi Kleen224e2c92016-10-07 16:42:27 +0300120 {.str = "insn", .field = PERF_OUTPUT_INSN},
121 {.str = "insnlen", .field = PERF_OUTPUT_INSNLEN},
Andi Kleen48d02a12017-02-23 15:46:34 -0800122 {.str = "brstackinsn", .field = PERF_OUTPUT_BRSTACKINSN},
Mark Santaniello106dacd2017-06-19 09:38:25 -0700123 {.str = "brstackoff", .field = PERF_OUTPUT_BRSTACKOFF},
Adrian Hunter47e78082017-05-26 11:17:22 +0300124 {.str = "synth", .field = PERF_OUTPUT_SYNTH},
Kan Liang49d58f02017-08-29 13:11:11 -0400125 {.str = "phys_addr", .field = PERF_OUTPUT_PHYS_ADDR},
David Ahern745f43e2011-03-09 22:23:26 -0700126};
127
Adrian Hunter14057202017-06-21 13:17:19 +0300128enum {
129 OUTPUT_TYPE_SYNTH = PERF_TYPE_MAX,
130 OUTPUT_TYPE_MAX
131};
132
David Ahern745f43e2011-03-09 22:23:26 -0700133/* default set to maintain compatibility with current format */
David Ahern2c9e45f72011-03-17 10:03:21 -0600134static struct {
135 bool user_set;
David Ahern9cbdb702011-04-06 21:54:20 -0600136 bool wildcard_set;
David Aherna6ffaf92013-08-07 22:50:51 -0400137 unsigned int print_ip_opts;
David Ahern2c9e45f72011-03-17 10:03:21 -0600138 u64 fields;
139 u64 invalid_fields;
Adrian Hunter14057202017-06-21 13:17:19 +0300140} output[OUTPUT_TYPE_MAX] = {
David Ahern1424dc92011-03-09 22:23:28 -0700141
David Ahern2c9e45f72011-03-17 10:03:21 -0600142 [PERF_TYPE_HARDWARE] = {
143 .user_set = false,
David Ahern1424dc92011-03-09 22:23:28 -0700144
David Ahern2c9e45f72011-03-17 10:03:21 -0600145 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
146 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
David Ahern787bef12011-05-27 14:28:43 -0600147 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
Jiri Olsae8564b72014-08-25 16:45:43 +0200148 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO |
149 PERF_OUTPUT_PERIOD,
David Ahern2c9e45f72011-03-17 10:03:21 -0600150
Wang Nan30372f02016-02-24 11:20:45 +0000151 .invalid_fields = PERF_OUTPUT_TRACE | PERF_OUTPUT_BPF_OUTPUT,
David Ahern2c9e45f72011-03-17 10:03:21 -0600152 },
153
154 [PERF_TYPE_SOFTWARE] = {
155 .user_set = false,
156
157 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
158 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
David Ahern787bef12011-05-27 14:28:43 -0600159 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
Jiri Olsae8564b72014-08-25 16:45:43 +0200160 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO |
Wang Nan30372f02016-02-24 11:20:45 +0000161 PERF_OUTPUT_PERIOD | PERF_OUTPUT_BPF_OUTPUT,
David Ahern2c9e45f72011-03-17 10:03:21 -0600162
163 .invalid_fields = PERF_OUTPUT_TRACE,
164 },
165
166 [PERF_TYPE_TRACEPOINT] = {
167 .user_set = false,
168
169 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
170 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
Wang Nan30372f02016-02-24 11:20:45 +0000171 PERF_OUTPUT_EVNAME | PERF_OUTPUT_TRACE
David Ahern2c9e45f72011-03-17 10:03:21 -0600172 },
Arun Sharma0817a6a2011-04-14 10:38:18 -0700173
174 [PERF_TYPE_RAW] = {
175 .user_set = false,
176
177 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
178 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
David Ahern787bef12011-05-27 14:28:43 -0600179 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
Jiri Olsae8564b72014-08-25 16:45:43 +0200180 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO |
Jiri Olsaff7b1912016-02-15 09:34:52 +0100181 PERF_OUTPUT_PERIOD | PERF_OUTPUT_ADDR |
Kan Liang49d58f02017-08-29 13:11:11 -0400182 PERF_OUTPUT_DATA_SRC | PERF_OUTPUT_WEIGHT |
183 PERF_OUTPUT_PHYS_ADDR,
Arun Sharma0817a6a2011-04-14 10:38:18 -0700184
Wang Nan30372f02016-02-24 11:20:45 +0000185 .invalid_fields = PERF_OUTPUT_TRACE | PERF_OUTPUT_BPF_OUTPUT,
Arun Sharma0817a6a2011-04-14 10:38:18 -0700186 },
Wang Nan27cfef02015-12-08 02:25:43 +0000187
188 [PERF_TYPE_BREAKPOINT] = {
189 .user_set = false,
190
191 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
192 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
193 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
194 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO |
195 PERF_OUTPUT_PERIOD,
196
Wang Nan30372f02016-02-24 11:20:45 +0000197 .invalid_fields = PERF_OUTPUT_TRACE | PERF_OUTPUT_BPF_OUTPUT,
Wang Nan27cfef02015-12-08 02:25:43 +0000198 },
Adrian Hunter14057202017-06-21 13:17:19 +0300199
200 [OUTPUT_TYPE_SYNTH] = {
201 .user_set = false,
202
203 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
204 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
205 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
Adrian Hunter47e78082017-05-26 11:17:22 +0300206 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO |
207 PERF_OUTPUT_SYNTH,
Adrian Hunter14057202017-06-21 13:17:19 +0300208
209 .invalid_fields = PERF_OUTPUT_TRACE | PERF_OUTPUT_BPF_OUTPUT,
210 },
David Ahern1424dc92011-03-09 22:23:28 -0700211};
David Ahern745f43e2011-03-09 22:23:26 -0700212
Adrian Hunter14057202017-06-21 13:17:19 +0300213static inline int output_type(unsigned int type)
214{
215 switch (type) {
216 case PERF_TYPE_SYNTH:
217 return OUTPUT_TYPE_SYNTH;
218 default:
219 return type;
220 }
221}
222
223static inline unsigned int attr_type(unsigned int type)
224{
225 switch (type) {
226 case OUTPUT_TYPE_SYNTH:
227 return PERF_TYPE_SYNTH;
228 default:
229 return type;
230 }
231}
232
David Ahern2c9e45f72011-03-17 10:03:21 -0600233static bool output_set_by_user(void)
234{
235 int j;
Adrian Hunter14057202017-06-21 13:17:19 +0300236 for (j = 0; j < OUTPUT_TYPE_MAX; ++j) {
David Ahern2c9e45f72011-03-17 10:03:21 -0600237 if (output[j].user_set)
238 return true;
239 }
240 return false;
241}
David Ahern745f43e2011-03-09 22:23:26 -0700242
David Ahern9cbdb702011-04-06 21:54:20 -0600243static const char *output_field2str(enum perf_output_field field)
244{
245 int i, imax = ARRAY_SIZE(all_output_options);
246 const char *str = "";
247
248 for (i = 0; i < imax; ++i) {
249 if (all_output_options[i].field == field) {
250 str = all_output_options[i].str;
251 break;
252 }
253 }
254 return str;
255}
256
Adrian Hunter14057202017-06-21 13:17:19 +0300257#define PRINT_FIELD(x) (output[output_type(attr->type)].fields & PERF_OUTPUT_##x)
David Ahern1424dc92011-03-09 22:23:28 -0700258
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300259static int perf_evsel__do_check_stype(struct perf_evsel *evsel,
260 u64 sample_type, const char *sample_msg,
261 enum perf_output_field field,
262 bool allow_user_set)
David Ahern1424dc92011-03-09 22:23:28 -0700263{
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300264 struct perf_event_attr *attr = &evsel->attr;
Adrian Hunter14057202017-06-21 13:17:19 +0300265 int type = output_type(attr->type);
David Ahern9cbdb702011-04-06 21:54:20 -0600266 const char *evname;
267
268 if (attr->sample_type & sample_type)
269 return 0;
270
271 if (output[type].user_set) {
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300272 if (allow_user_set)
273 return 0;
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300274 evname = perf_evsel__name(evsel);
David Ahern9cbdb702011-04-06 21:54:20 -0600275 pr_err("Samples for '%s' event do not have %s attribute set. "
276 "Cannot print '%s' field.\n",
277 evname, sample_msg, output_field2str(field));
278 return -1;
279 }
280
281 /* user did not ask for it explicitly so remove from the default list */
282 output[type].fields &= ~field;
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300283 evname = perf_evsel__name(evsel);
David Ahern9cbdb702011-04-06 21:54:20 -0600284 pr_debug("Samples for '%s' event do not have %s attribute set. "
285 "Skipping '%s' field.\n",
286 evname, sample_msg, output_field2str(field));
287
288 return 0;
289}
290
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300291static int perf_evsel__check_stype(struct perf_evsel *evsel,
292 u64 sample_type, const char *sample_msg,
293 enum perf_output_field field)
294{
295 return perf_evsel__do_check_stype(evsel, sample_type, sample_msg, field,
296 false);
297}
298
David Ahern9cbdb702011-04-06 21:54:20 -0600299static int perf_evsel__check_attr(struct perf_evsel *evsel,
300 struct perf_session *session)
301{
302 struct perf_event_attr *attr = &evsel->attr;
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300303 bool allow_user_set;
304
Jiri Olsae099eba2016-01-05 22:09:09 +0100305 if (perf_header__has_feat(&session->header, HEADER_STAT))
306 return 0;
307
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300308 allow_user_set = perf_header__has_feat(&session->header,
309 HEADER_AUXTRACE);
David Ahern9cbdb702011-04-06 21:54:20 -0600310
David Ahern1424dc92011-03-09 22:23:28 -0700311 if (PRINT_FIELD(TRACE) &&
312 !perf_session__has_traces(session, "record -R"))
313 return -EINVAL;
314
David Ahern787bef12011-05-27 14:28:43 -0600315 if (PRINT_FIELD(IP)) {
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300316 if (perf_evsel__check_stype(evsel, PERF_SAMPLE_IP, "IP",
317 PERF_OUTPUT_IP))
David Ahern1424dc92011-03-09 22:23:28 -0700318 return -EINVAL;
David Ahern1424dc92011-03-09 22:23:28 -0700319 }
David Ahern7cec0922011-05-30 13:08:23 -0600320
321 if (PRINT_FIELD(ADDR) &&
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300322 perf_evsel__do_check_stype(evsel, PERF_SAMPLE_ADDR, "ADDR",
323 PERF_OUTPUT_ADDR, allow_user_set))
David Ahern7cec0922011-05-30 13:08:23 -0600324 return -EINVAL;
325
Jiri Olsa94ddddf2016-02-15 09:34:51 +0100326 if (PRINT_FIELD(DATA_SRC) &&
327 perf_evsel__check_stype(evsel, PERF_SAMPLE_DATA_SRC, "DATA_SRC",
328 PERF_OUTPUT_DATA_SRC))
329 return -EINVAL;
330
331 if (PRINT_FIELD(WEIGHT) &&
332 perf_evsel__check_stype(evsel, PERF_SAMPLE_WEIGHT, "WEIGHT",
333 PERF_OUTPUT_WEIGHT))
334 return -EINVAL;
335
David Ahern7cec0922011-05-30 13:08:23 -0600336 if (PRINT_FIELD(SYM) && !PRINT_FIELD(IP) && !PRINT_FIELD(ADDR)) {
337 pr_err("Display of symbols requested but neither sample IP nor "
338 "sample address\nis selected. Hence, no addresses to convert "
339 "to symbols.\n");
David Ahern787bef12011-05-27 14:28:43 -0600340 return -EINVAL;
341 }
Akihiro Nagaia978f2a2012-01-30 13:43:15 +0900342 if (PRINT_FIELD(SYMOFFSET) && !PRINT_FIELD(SYM)) {
343 pr_err("Display of offsets requested but symbol is not"
344 "selected.\n");
345 return -EINVAL;
346 }
Mark Santaniello55b9b502017-06-19 09:38:24 -0700347 if (PRINT_FIELD(DSO) && !PRINT_FIELD(IP) && !PRINT_FIELD(ADDR) &&
Mark Santaniello106dacd2017-06-19 09:38:25 -0700348 !PRINT_FIELD(BRSTACK) && !PRINT_FIELD(BRSTACKSYM) && !PRINT_FIELD(BRSTACKOFF)) {
349 pr_err("Display of DSO requested but no address to convert. Select\n"
350 "sample IP, sample address, brstack, brstacksym, or brstackoff.\n");
David Ahern610723f2011-05-27 14:28:44 -0600351 return -EINVAL;
352 }
Adrian Huntercc8fae12013-12-06 09:42:57 +0200353 if (PRINT_FIELD(SRCLINE) && !PRINT_FIELD(IP)) {
354 pr_err("Display of source line number requested but sample IP is not\n"
355 "selected. Hence, no address to lookup the source line number.\n");
356 return -EINVAL;
357 }
Andi Kleen48d02a12017-02-23 15:46:34 -0800358 if (PRINT_FIELD(BRSTACKINSN) &&
359 !(perf_evlist__combined_branch_type(session->evlist) &
360 PERF_SAMPLE_BRANCH_ANY)) {
361 pr_err("Display of branch stack assembler requested, but non all-branch filter set\n"
362 "Hint: run 'perf record -b ...'\n");
363 return -EINVAL;
364 }
David Ahern1424dc92011-03-09 22:23:28 -0700365 if ((PRINT_FIELD(PID) || PRINT_FIELD(TID)) &&
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300366 perf_evsel__check_stype(evsel, PERF_SAMPLE_TID, "TID",
367 PERF_OUTPUT_TID|PERF_OUTPUT_PID))
David Ahern1424dc92011-03-09 22:23:28 -0700368 return -EINVAL;
David Ahern1424dc92011-03-09 22:23:28 -0700369
370 if (PRINT_FIELD(TIME) &&
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300371 perf_evsel__check_stype(evsel, PERF_SAMPLE_TIME, "TIME",
372 PERF_OUTPUT_TIME))
David Ahern1424dc92011-03-09 22:23:28 -0700373 return -EINVAL;
David Ahern1424dc92011-03-09 22:23:28 -0700374
375 if (PRINT_FIELD(CPU) &&
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300376 perf_evsel__do_check_stype(evsel, PERF_SAMPLE_CPU, "CPU",
377 PERF_OUTPUT_CPU, allow_user_set))
David Ahern1424dc92011-03-09 22:23:28 -0700378 return -EINVAL;
David Ahern9cbdb702011-04-06 21:54:20 -0600379
Jiri Olsa535aeaae2014-08-25 16:45:42 +0200380 if (PRINT_FIELD(PERIOD) &&
381 perf_evsel__check_stype(evsel, PERF_SAMPLE_PERIOD, "PERIOD",
382 PERF_OUTPUT_PERIOD))
383 return -EINVAL;
384
Stephane Eranianfc36f942015-08-31 18:41:10 +0200385 if (PRINT_FIELD(IREGS) &&
386 perf_evsel__check_stype(evsel, PERF_SAMPLE_REGS_INTR, "IREGS",
387 PERF_OUTPUT_IREGS))
388 return -EINVAL;
389
Andi Kleenb1491ac2017-09-05 11:40:57 -0700390 if (PRINT_FIELD(UREGS) &&
391 perf_evsel__check_stype(evsel, PERF_SAMPLE_REGS_USER, "UREGS",
392 PERF_OUTPUT_UREGS))
393 return -EINVAL;
394
Kan Liang49d58f02017-08-29 13:11:11 -0400395 if (PRINT_FIELD(PHYS_ADDR) &&
396 perf_evsel__check_stype(evsel, PERF_SAMPLE_PHYS_ADDR, "PHYS_ADDR",
397 PERF_OUTPUT_PHYS_ADDR))
398 return -EINVAL;
399
David Ahern9cbdb702011-04-06 21:54:20 -0600400 return 0;
401}
402
Adrian Hunter7ea95722013-11-01 15:51:30 +0200403static void set_print_ip_opts(struct perf_event_attr *attr)
404{
Adrian Hunter14057202017-06-21 13:17:19 +0300405 unsigned int type = output_type(attr->type);
Adrian Hunter7ea95722013-11-01 15:51:30 +0200406
407 output[type].print_ip_opts = 0;
408 if (PRINT_FIELD(IP))
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300409 output[type].print_ip_opts |= EVSEL__PRINT_IP;
Adrian Hunter7ea95722013-11-01 15:51:30 +0200410
411 if (PRINT_FIELD(SYM))
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300412 output[type].print_ip_opts |= EVSEL__PRINT_SYM;
Adrian Hunter7ea95722013-11-01 15:51:30 +0200413
414 if (PRINT_FIELD(DSO))
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300415 output[type].print_ip_opts |= EVSEL__PRINT_DSO;
Adrian Hunter7ea95722013-11-01 15:51:30 +0200416
417 if (PRINT_FIELD(SYMOFFSET))
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300418 output[type].print_ip_opts |= EVSEL__PRINT_SYMOFFSET;
Adrian Huntercc8fae12013-12-06 09:42:57 +0200419
420 if (PRINT_FIELD(SRCLINE))
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300421 output[type].print_ip_opts |= EVSEL__PRINT_SRCLINE;
Adrian Hunter7ea95722013-11-01 15:51:30 +0200422}
423
David Ahern9cbdb702011-04-06 21:54:20 -0600424/*
425 * verify all user requested events exist and the samples
426 * have the expected data
427 */
428static int perf_session__check_output_opt(struct perf_session *session)
429{
He Kuang40f20e52016-05-16 04:51:19 +0000430 unsigned int j;
David Ahern9cbdb702011-04-06 21:54:20 -0600431 struct perf_evsel *evsel;
432
Adrian Hunter14057202017-06-21 13:17:19 +0300433 for (j = 0; j < OUTPUT_TYPE_MAX; ++j) {
434 evsel = perf_session__find_first_evtype(session, attr_type(j));
David Ahern9cbdb702011-04-06 21:54:20 -0600435
436 /*
437 * even if fields is set to 0 (ie., show nothing) event must
438 * exist if user explicitly includes it on the command line
439 */
Adrian Hunter14057202017-06-21 13:17:19 +0300440 if (!evsel && output[j].user_set && !output[j].wildcard_set &&
441 j != OUTPUT_TYPE_SYNTH) {
David Ahern9cbdb702011-04-06 21:54:20 -0600442 pr_err("%s events do not exist. "
Adrian Hunter701516a2017-05-26 11:17:20 +0300443 "Remove corresponding -F option to proceed.\n",
David Ahern9cbdb702011-04-06 21:54:20 -0600444 event_type(j));
445 return -1;
446 }
447
448 if (evsel && output[j].fields &&
449 perf_evsel__check_attr(evsel, session))
450 return -1;
David Aherna6ffaf92013-08-07 22:50:51 -0400451
452 if (evsel == NULL)
453 continue;
454
Adrian Hunter7ea95722013-11-01 15:51:30 +0200455 set_print_ip_opts(&evsel->attr);
David Ahern1424dc92011-03-09 22:23:28 -0700456 }
457
Adrian Hunter98526ee2014-07-31 09:00:59 +0300458 if (!no_callchain) {
459 bool use_callchain = false;
He Kuang71ac8992016-08-04 11:25:43 +0000460 bool not_pipe = false;
Adrian Hunter98526ee2014-07-31 09:00:59 +0300461
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300462 evlist__for_each_entry(session->evlist, evsel) {
He Kuang71ac8992016-08-04 11:25:43 +0000463 not_pipe = true;
Adrian Hunter98526ee2014-07-31 09:00:59 +0300464 if (evsel->attr.sample_type & PERF_SAMPLE_CALLCHAIN) {
465 use_callchain = true;
466 break;
467 }
468 }
He Kuang71ac8992016-08-04 11:25:43 +0000469 if (not_pipe && !use_callchain)
Adrian Hunter98526ee2014-07-31 09:00:59 +0300470 symbol_conf.use_callchain = false;
471 }
472
David Ahern80b8b492013-11-19 21:07:37 -0700473 /*
474 * set default for tracepoints to print symbols only
475 * if callchains are present
476 */
477 if (symbol_conf.use_callchain &&
478 !output[PERF_TYPE_TRACEPOINT].user_set) {
479 struct perf_event_attr *attr;
480
481 j = PERF_TYPE_TRACEPOINT;
David Ahern80b8b492013-11-19 21:07:37 -0700482
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300483 evlist__for_each_entry(session->evlist, evsel) {
He Kuang40f20e52016-05-16 04:51:19 +0000484 if (evsel->attr.type != j)
485 continue;
David Ahern80b8b492013-11-19 21:07:37 -0700486
He Kuang40f20e52016-05-16 04:51:19 +0000487 attr = &evsel->attr;
488
489 if (attr->sample_type & PERF_SAMPLE_CALLCHAIN) {
490 output[j].fields |= PERF_OUTPUT_IP;
491 output[j].fields |= PERF_OUTPUT_SYM;
492 output[j].fields |= PERF_OUTPUT_DSO;
493 set_print_ip_opts(attr);
494 goto out;
495 }
David Ahern80b8b492013-11-19 21:07:37 -0700496 }
497 }
498
499out:
David Ahern1424dc92011-03-09 22:23:28 -0700500 return 0;
501}
David Ahern745f43e2011-03-09 22:23:26 -0700502
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300503static int perf_sample__fprintf_iregs(struct perf_sample *sample,
504 struct perf_event_attr *attr, FILE *fp)
Stephane Eranianfc36f942015-08-31 18:41:10 +0200505{
506 struct regs_dump *regs = &sample->intr_regs;
507 uint64_t mask = attr->sample_regs_intr;
508 unsigned i = 0, r;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300509 int printed = 0;
Stephane Eranianfc36f942015-08-31 18:41:10 +0200510
511 if (!regs)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300512 return 0;
Stephane Eranianfc36f942015-08-31 18:41:10 +0200513
514 for_each_set_bit(r, (unsigned long *) &mask, sizeof(mask) * 8) {
515 u64 val = regs->regs[i++];
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300516 printed += fprintf(fp, "%5s:0x%"PRIx64" ", perf_reg_name(r), val);
Stephane Eranianfc36f942015-08-31 18:41:10 +0200517 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300518
519 return printed;
Stephane Eranianfc36f942015-08-31 18:41:10 +0200520}
521
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300522static int perf_sample__fprintf_uregs(struct perf_sample *sample,
523 struct perf_event_attr *attr, FILE *fp)
Andi Kleenb1491ac2017-09-05 11:40:57 -0700524{
525 struct regs_dump *regs = &sample->user_regs;
526 uint64_t mask = attr->sample_regs_user;
527 unsigned i = 0, r;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300528 int printed = 0;
Andi Kleenb1491ac2017-09-05 11:40:57 -0700529
530 if (!regs || !regs->regs)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300531 return 0;
Andi Kleenb1491ac2017-09-05 11:40:57 -0700532
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300533 printed += fprintf(fp, " ABI:%" PRIu64 " ", regs->abi);
Andi Kleenb1491ac2017-09-05 11:40:57 -0700534
535 for_each_set_bit(r, (unsigned long *) &mask, sizeof(mask) * 8) {
536 u64 val = regs->regs[i++];
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300537 printed += fprintf(fp, "%5s:0x%"PRIx64" ", perf_reg_name(r), val);
Andi Kleenb1491ac2017-09-05 11:40:57 -0700538 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300539
540 return printed;
Andi Kleenb1491ac2017-09-05 11:40:57 -0700541}
542
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300543static int perf_sample__fprintf_start(struct perf_sample *sample,
544 struct thread *thread,
545 struct perf_evsel *evsel, FILE *fp)
David Ahernc70c94b2011-03-09 22:23:25 -0700546{
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300547 struct perf_event_attr *attr = &evsel->attr;
David Ahernc70c94b2011-03-09 22:23:25 -0700548 unsigned long secs;
David Ahern745f43e2011-03-09 22:23:26 -0700549 unsigned long long nsecs;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300550 int printed = 0;
David Ahernc70c94b2011-03-09 22:23:25 -0700551
David Ahern745f43e2011-03-09 22:23:26 -0700552 if (PRINT_FIELD(COMM)) {
553 if (latency_format)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300554 printed += fprintf(fp, "%8.8s ", thread__comm_str(thread));
David Ahern787bef12011-05-27 14:28:43 -0600555 else if (PRINT_FIELD(IP) && symbol_conf.use_callchain)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300556 printed += fprintf(fp, "%s ", thread__comm_str(thread));
David Ahern745f43e2011-03-09 22:23:26 -0700557 else
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300558 printed += fprintf(fp, "%16s ", thread__comm_str(thread));
David Ahern745f43e2011-03-09 22:23:26 -0700559 }
David Ahernc70c94b2011-03-09 22:23:25 -0700560
David Ahern745f43e2011-03-09 22:23:26 -0700561 if (PRINT_FIELD(PID) && PRINT_FIELD(TID))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300562 printed += fprintf(fp, "%5d/%-5d ", sample->pid, sample->tid);
David Ahern745f43e2011-03-09 22:23:26 -0700563 else if (PRINT_FIELD(PID))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300564 printed += fprintf(fp, "%5d ", sample->pid);
David Ahern745f43e2011-03-09 22:23:26 -0700565 else if (PRINT_FIELD(TID))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300566 printed += fprintf(fp, "%5d ", sample->tid);
David Ahernc70c94b2011-03-09 22:23:25 -0700567
David Ahern745f43e2011-03-09 22:23:26 -0700568 if (PRINT_FIELD(CPU)) {
569 if (latency_format)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300570 printed += fprintf(fp, "%3d ", sample->cpu);
David Ahern745f43e2011-03-09 22:23:26 -0700571 else
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300572 printed += fprintf(fp, "[%03d] ", sample->cpu);
David Ahern745f43e2011-03-09 22:23:26 -0700573 }
David Ahernc70c94b2011-03-09 22:23:25 -0700574
David Ahern745f43e2011-03-09 22:23:26 -0700575 if (PRINT_FIELD(TIME)) {
576 nsecs = sample->time;
Arnaldo Carvalho de Melobd48c632016-08-05 15:40:30 -0300577 secs = nsecs / NSEC_PER_SEC;
578 nsecs -= secs * NSEC_PER_SEC;
Namhyung Kim99620a52016-10-24 11:02:45 +0900579
Adrian Hunter83e19862015-09-25 16:15:36 +0300580 if (nanosecs)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300581 printed += fprintf(fp, "%5lu.%09llu: ", secs, nsecs);
Namhyung Kim99620a52016-10-24 11:02:45 +0900582 else {
583 char sample_time[32];
584 timestamp__scnprintf_usec(sample->time, sample_time, sizeof(sample_time));
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300585 printed += fprintf(fp, "%12s: ", sample_time);
Namhyung Kim99620a52016-10-24 11:02:45 +0900586 }
David Ahern745f43e2011-03-09 22:23:26 -0700587 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300588
589 return printed;
David Ahernc70c94b2011-03-09 22:23:25 -0700590}
591
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200592static inline char
593mispred_str(struct branch_entry *br)
594{
595 if (!(br->flags.mispred || br->flags.predicted))
596 return '-';
597
598 return br->flags.predicted ? 'P' : 'M';
599}
600
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300601static int perf_sample__fprintf_brstack(struct perf_sample *sample,
602 struct thread *thread,
603 struct perf_event_attr *attr, FILE *fp)
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200604{
605 struct branch_stack *br = sample->branch_stack;
Mark Santaniello55b9b502017-06-19 09:38:24 -0700606 struct addr_location alf, alt;
607 u64 i, from, to;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300608 int printed = 0;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200609
610 if (!(br && br->nr))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300611 return 0;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200612
613 for (i = 0; i < br->nr; i++) {
Mark Santaniello55b9b502017-06-19 09:38:24 -0700614 from = br->entries[i].from;
615 to = br->entries[i].to;
616
617 if (PRINT_FIELD(DSO)) {
618 memset(&alf, 0, sizeof(alf));
619 memset(&alt, 0, sizeof(alt));
620 thread__find_addr_map(thread, sample->cpumode, MAP__FUNCTION, from, &alf);
621 thread__find_addr_map(thread, sample->cpumode, MAP__FUNCTION, to, &alt);
622 }
623
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300624 printed += fprintf(fp, " 0x%"PRIx64, from);
Mark Santaniello55b9b502017-06-19 09:38:24 -0700625 if (PRINT_FIELD(DSO)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300626 printed += fprintf(fp, "(");
627 printed += map__fprintf_dsoname(alf.map, fp);
628 printed += fprintf(fp, ")");
Mark Santaniello55b9b502017-06-19 09:38:24 -0700629 }
630
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300631 printed += fprintf(fp, "/0x%"PRIx64, to);
Mark Santaniello55b9b502017-06-19 09:38:24 -0700632 if (PRINT_FIELD(DSO)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300633 printed += fprintf(fp, "(");
634 printed += map__fprintf_dsoname(alt.map, fp);
635 printed += fprintf(fp, ")");
Mark Santaniello55b9b502017-06-19 09:38:24 -0700636 }
637
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300638 printed += fprintf(fp, "/%c/%c/%c/%d ",
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200639 mispred_str( br->entries + i),
640 br->entries[i].flags.in_tx? 'X' : '-',
641 br->entries[i].flags.abort? 'A' : '-',
642 br->entries[i].flags.cycles);
643 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300644
645 return printed;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200646}
647
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300648static int perf_sample__fprintf_brstacksym(struct perf_sample *sample,
649 struct thread *thread,
650 struct perf_event_attr *attr, FILE *fp)
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200651{
652 struct branch_stack *br = sample->branch_stack;
653 struct addr_location alf, alt;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200654 u64 i, from, to;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300655 int printed = 0;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200656
657 if (!(br && br->nr))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300658 return 0;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200659
660 for (i = 0; i < br->nr; i++) {
661
662 memset(&alf, 0, sizeof(alf));
663 memset(&alt, 0, sizeof(alt));
664 from = br->entries[i].from;
665 to = br->entries[i].to;
666
Arnaldo Carvalho de Melo473398a2016-03-22 18:23:43 -0300667 thread__find_addr_map(thread, sample->cpumode, MAP__FUNCTION, from, &alf);
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200668 if (alf.map)
Arnaldo Carvalho de Melobe39db92016-09-01 19:25:52 -0300669 alf.sym = map__find_symbol(alf.map, alf.addr);
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200670
Arnaldo Carvalho de Melo473398a2016-03-22 18:23:43 -0300671 thread__find_addr_map(thread, sample->cpumode, MAP__FUNCTION, to, &alt);
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200672 if (alt.map)
Arnaldo Carvalho de Melobe39db92016-09-01 19:25:52 -0300673 alt.sym = map__find_symbol(alt.map, alt.addr);
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200674
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300675 printed += symbol__fprintf_symname_offs(alf.sym, &alf, fp);
Mark Santaniello55b9b502017-06-19 09:38:24 -0700676 if (PRINT_FIELD(DSO)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300677 printed += fprintf(fp, "(");
678 printed += map__fprintf_dsoname(alf.map, fp);
679 printed += fprintf(fp, ")");
Mark Santaniello55b9b502017-06-19 09:38:24 -0700680 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300681 printed += fprintf(fp, "%c", '/');
682 printed += symbol__fprintf_symname_offs(alt.sym, &alt, fp);
Mark Santaniello55b9b502017-06-19 09:38:24 -0700683 if (PRINT_FIELD(DSO)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300684 printed += fprintf(fp, "(");
685 printed += map__fprintf_dsoname(alt.map, fp);
686 printed += fprintf(fp, ")");
Mark Santaniello55b9b502017-06-19 09:38:24 -0700687 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300688 printed += fprintf(fp, "/%c/%c/%c/%d ",
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200689 mispred_str( br->entries + i),
690 br->entries[i].flags.in_tx? 'X' : '-',
691 br->entries[i].flags.abort? 'A' : '-',
692 br->entries[i].flags.cycles);
693 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300694
695 return printed;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200696}
697
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300698static int perf_sample__fprintf_brstackoff(struct perf_sample *sample,
699 struct thread *thread,
700 struct perf_event_attr *attr, FILE *fp)
Mark Santaniello106dacd2017-06-19 09:38:25 -0700701{
702 struct branch_stack *br = sample->branch_stack;
703 struct addr_location alf, alt;
704 u64 i, from, to;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300705 int printed = 0;
Mark Santaniello106dacd2017-06-19 09:38:25 -0700706
707 if (!(br && br->nr))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300708 return 0;
Mark Santaniello106dacd2017-06-19 09:38:25 -0700709
710 for (i = 0; i < br->nr; i++) {
711
712 memset(&alf, 0, sizeof(alf));
713 memset(&alt, 0, sizeof(alt));
714 from = br->entries[i].from;
715 to = br->entries[i].to;
716
717 thread__find_addr_map(thread, sample->cpumode, MAP__FUNCTION, from, &alf);
718 if (alf.map && !alf.map->dso->adjust_symbols)
719 from = map__map_ip(alf.map, from);
720
721 thread__find_addr_map(thread, sample->cpumode, MAP__FUNCTION, to, &alt);
722 if (alt.map && !alt.map->dso->adjust_symbols)
723 to = map__map_ip(alt.map, to);
724
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300725 printed += fprintf(fp, " 0x%"PRIx64, from);
Mark Santaniello106dacd2017-06-19 09:38:25 -0700726 if (PRINT_FIELD(DSO)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300727 printed += fprintf(fp, "(");
728 printed += map__fprintf_dsoname(alf.map, fp);
729 printed += fprintf(fp, ")");
Mark Santaniello106dacd2017-06-19 09:38:25 -0700730 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300731 printed += fprintf(fp, "/0x%"PRIx64, to);
Mark Santaniello106dacd2017-06-19 09:38:25 -0700732 if (PRINT_FIELD(DSO)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300733 printed += fprintf(fp, "(");
734 printed += map__fprintf_dsoname(alt.map, fp);
735 printed += fprintf(fp, ")");
Mark Santaniello106dacd2017-06-19 09:38:25 -0700736 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300737 printed += fprintf(fp, "/%c/%c/%c/%d ",
Mark Santaniello106dacd2017-06-19 09:38:25 -0700738 mispred_str(br->entries + i),
739 br->entries[i].flags.in_tx ? 'X' : '-',
740 br->entries[i].flags.abort ? 'A' : '-',
741 br->entries[i].flags.cycles);
742 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300743
744 return printed;
Mark Santaniello106dacd2017-06-19 09:38:25 -0700745}
Andi Kleen48d02a12017-02-23 15:46:34 -0800746#define MAXBB 16384UL
747
748static int grab_bb(u8 *buffer, u64 start, u64 end,
749 struct machine *machine, struct thread *thread,
750 bool *is64bit, u8 *cpumode, bool last)
751{
752 long offset, len;
753 struct addr_location al;
754 bool kernel;
755
756 if (!start || !end)
757 return 0;
758
759 kernel = machine__kernel_ip(machine, start);
760 if (kernel)
761 *cpumode = PERF_RECORD_MISC_KERNEL;
762 else
763 *cpumode = PERF_RECORD_MISC_USER;
764
765 /*
766 * Block overlaps between kernel and user.
767 * This can happen due to ring filtering
768 * On Intel CPUs the entry into the kernel is filtered,
769 * but the exit is not. Let the caller patch it up.
770 */
771 if (kernel != machine__kernel_ip(machine, end)) {
772 printf("\tblock %" PRIx64 "-%" PRIx64 " transfers between kernel and user\n",
773 start, end);
774 return -ENXIO;
775 }
776
777 memset(&al, 0, sizeof(al));
778 if (end - start > MAXBB - MAXINSN) {
779 if (last)
780 printf("\tbrstack does not reach to final jump (%" PRIx64 "-%" PRIx64 ")\n", start, end);
781 else
782 printf("\tblock %" PRIx64 "-%" PRIx64 " (%" PRIu64 ") too long to dump\n", start, end, end - start);
783 return 0;
784 }
785
786 thread__find_addr_map(thread, *cpumode, MAP__FUNCTION, start, &al);
787 if (!al.map || !al.map->dso) {
788 printf("\tcannot resolve %" PRIx64 "-%" PRIx64 "\n", start, end);
789 return 0;
790 }
791 if (al.map->dso->data.status == DSO_DATA_STATUS_ERROR) {
792 printf("\tcannot resolve %" PRIx64 "-%" PRIx64 "\n", start, end);
793 return 0;
794 }
795
796 /* Load maps to ensure dso->is_64_bit has been updated */
797 map__load(al.map);
798
799 offset = al.map->map_ip(al.map, start);
800 len = dso__data_read_offset(al.map->dso, machine, offset, (u8 *)buffer,
801 end - start + MAXINSN);
802
803 *is64bit = al.map->dso->is_64_bit;
804 if (len <= 0)
805 printf("\tcannot fetch code for block at %" PRIx64 "-%" PRIx64 "\n",
806 start, end);
807 return len;
808}
809
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300810static int ip__fprintf_jump(uint64_t ip, struct branch_entry *en,
811 struct perf_insn *x, u8 *inbuf, int len,
812 int insn, FILE *fp)
Andi Kleen48d02a12017-02-23 15:46:34 -0800813{
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300814 int printed = fprintf(fp, "\t%016" PRIx64 "\t%-30s\t#%s%s%s%s", ip,
815 dump_insn(x, ip, inbuf, len, NULL),
816 en->flags.predicted ? " PRED" : "",
817 en->flags.mispred ? " MISPRED" : "",
818 en->flags.in_tx ? " INTX" : "",
819 en->flags.abort ? " ABORT" : "");
Andi Kleen48d02a12017-02-23 15:46:34 -0800820 if (en->flags.cycles) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300821 printed += fprintf(fp, " %d cycles", en->flags.cycles);
Andi Kleen48d02a12017-02-23 15:46:34 -0800822 if (insn)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300823 printed += fprintf(fp, " %.2f IPC", (float)insn / en->flags.cycles);
Andi Kleen48d02a12017-02-23 15:46:34 -0800824 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300825 return printed + fprintf(fp, "\n");
Andi Kleen48d02a12017-02-23 15:46:34 -0800826}
827
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300828static int ip__fprintf_sym(uint64_t addr, struct thread *thread,
829 u8 cpumode, int cpu, struct symbol **lastsym,
830 struct perf_event_attr *attr, FILE *fp)
Andi Kleen48d02a12017-02-23 15:46:34 -0800831{
832 struct addr_location al;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300833 int off, printed = 0;
Andi Kleen48d02a12017-02-23 15:46:34 -0800834
835 memset(&al, 0, sizeof(al));
836
837 thread__find_addr_map(thread, cpumode, MAP__FUNCTION, addr, &al);
838 if (!al.map)
839 thread__find_addr_map(thread, cpumode, MAP__VARIABLE,
840 addr, &al);
841 if ((*lastsym) && al.addr >= (*lastsym)->start && al.addr < (*lastsym)->end)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300842 return 0;
Andi Kleen48d02a12017-02-23 15:46:34 -0800843
844 al.cpu = cpu;
845 al.sym = NULL;
846 if (al.map)
847 al.sym = map__find_symbol(al.map, al.addr);
848
849 if (!al.sym)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300850 return 0;
Andi Kleen48d02a12017-02-23 15:46:34 -0800851
852 if (al.addr < al.sym->end)
853 off = al.addr - al.sym->start;
854 else
855 off = al.addr - al.map->start - al.sym->start;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300856 printed += fprintf(fp, "\t%s", al.sym->name);
Andi Kleen48d02a12017-02-23 15:46:34 -0800857 if (off)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300858 printed += fprintf(fp, "%+d", off);
859 printed += fprintf(fp, ":");
Andi Kleen48d02a12017-02-23 15:46:34 -0800860 if (PRINT_FIELD(SRCLINE))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300861 printed += map__fprintf_srcline(al.map, al.addr, "\t", fp);
862 printed += fprintf(fp, "\n");
Andi Kleen48d02a12017-02-23 15:46:34 -0800863 *lastsym = al.sym;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300864
865 return printed;
Andi Kleen48d02a12017-02-23 15:46:34 -0800866}
867
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300868static int perf_sample__fprintf_brstackinsn(struct perf_sample *sample,
869 struct thread *thread,
870 struct perf_event_attr *attr,
871 struct machine *machine, FILE *fp)
Andi Kleen48d02a12017-02-23 15:46:34 -0800872{
873 struct branch_stack *br = sample->branch_stack;
874 u64 start, end;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300875 int i, insn, len, nr, ilen, printed = 0;
Andi Kleen48d02a12017-02-23 15:46:34 -0800876 struct perf_insn x;
877 u8 buffer[MAXBB];
878 unsigned off;
879 struct symbol *lastsym = NULL;
880
881 if (!(br && br->nr))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300882 return 0;
Andi Kleen48d02a12017-02-23 15:46:34 -0800883 nr = br->nr;
884 if (max_blocks && nr > max_blocks + 1)
885 nr = max_blocks + 1;
886
887 x.thread = thread;
888 x.cpu = sample->cpu;
889
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300890 printed += fprintf(fp, "%c", '\n');
Andi Kleen48d02a12017-02-23 15:46:34 -0800891
892 /* Handle first from jump, of which we don't know the entry. */
893 len = grab_bb(buffer, br->entries[nr-1].from,
894 br->entries[nr-1].from,
895 machine, thread, &x.is64bit, &x.cpumode, false);
896 if (len > 0) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300897 printed += ip__fprintf_sym(br->entries[nr - 1].from, thread,
898 x.cpumode, x.cpu, &lastsym, attr, fp);
899 printed += ip__fprintf_jump(br->entries[nr - 1].from, &br->entries[nr - 1],
900 &x, buffer, len, 0, fp);
Andi Kleen48d02a12017-02-23 15:46:34 -0800901 }
902
903 /* Print all blocks */
904 for (i = nr - 2; i >= 0; i--) {
905 if (br->entries[i].from || br->entries[i].to)
906 pr_debug("%d: %" PRIx64 "-%" PRIx64 "\n", i,
907 br->entries[i].from,
908 br->entries[i].to);
909 start = br->entries[i + 1].to;
910 end = br->entries[i].from;
911
912 len = grab_bb(buffer, start, end, machine, thread, &x.is64bit, &x.cpumode, false);
913 /* Patch up missing kernel transfers due to ring filters */
914 if (len == -ENXIO && i > 0) {
915 end = br->entries[--i].from;
916 pr_debug("\tpatching up to %" PRIx64 "-%" PRIx64 "\n", start, end);
917 len = grab_bb(buffer, start, end, machine, thread, &x.is64bit, &x.cpumode, false);
918 }
919 if (len <= 0)
920 continue;
921
922 insn = 0;
923 for (off = 0;; off += ilen) {
924 uint64_t ip = start + off;
925
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300926 printed += ip__fprintf_sym(ip, thread, x.cpumode, x.cpu, &lastsym, attr, fp);
Andi Kleen48d02a12017-02-23 15:46:34 -0800927 if (ip == end) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300928 printed += ip__fprintf_jump(ip, &br->entries[i], &x, buffer + off, len - off, insn, fp);
Andi Kleen48d02a12017-02-23 15:46:34 -0800929 break;
930 } else {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300931 printed += fprintf(fp, "\t%016" PRIx64 "\t%s\n", ip,
932 dump_insn(&x, ip, buffer + off, len - off, &ilen));
Andi Kleen48d02a12017-02-23 15:46:34 -0800933 if (ilen == 0)
934 break;
935 insn++;
936 }
937 }
938 }
939
940 /*
941 * Hit the branch? In this case we are already done, and the target
942 * has not been executed yet.
943 */
944 if (br->entries[0].from == sample->ip)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300945 goto out;
Andi Kleen48d02a12017-02-23 15:46:34 -0800946 if (br->entries[0].flags.abort)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300947 goto out;
Andi Kleen48d02a12017-02-23 15:46:34 -0800948
949 /*
950 * Print final block upto sample
951 */
952 start = br->entries[0].to;
953 end = sample->ip;
954 len = grab_bb(buffer, start, end, machine, thread, &x.is64bit, &x.cpumode, true);
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300955 printed += ip__fprintf_sym(start, thread, x.cpumode, x.cpu, &lastsym, attr, fp);
Andi Kleen48d02a12017-02-23 15:46:34 -0800956 if (len <= 0) {
957 /* Print at least last IP if basic block did not work */
958 len = grab_bb(buffer, sample->ip, sample->ip,
959 machine, thread, &x.is64bit, &x.cpumode, false);
960 if (len <= 0)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300961 goto out;
Andi Kleen48d02a12017-02-23 15:46:34 -0800962
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300963 printed += fprintf(fp, "\t%016" PRIx64 "\t%s\n", sample->ip,
Andi Kleen48d02a12017-02-23 15:46:34 -0800964 dump_insn(&x, sample->ip, buffer, len, NULL));
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300965 goto out;
Andi Kleen48d02a12017-02-23 15:46:34 -0800966 }
967 for (off = 0; off <= end - start; off += ilen) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300968 printed += fprintf(fp, "\t%016" PRIx64 "\t%s\n", start + off,
969 dump_insn(&x, start + off, buffer + off, len - off, &ilen));
Andi Kleen48d02a12017-02-23 15:46:34 -0800970 if (ilen == 0)
971 break;
972 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300973out:
974 return printed;
Andi Kleen48d02a12017-02-23 15:46:34 -0800975}
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200976
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300977static int perf_sample__fprintf_addr(struct perf_sample *sample,
978 struct thread *thread,
979 struct perf_event_attr *attr, FILE *fp)
David Ahern7cec0922011-05-30 13:08:23 -0600980{
981 struct addr_location al;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300982 int printed = fprintf(fp, "%16" PRIx64, sample->addr);
David Ahern7cec0922011-05-30 13:08:23 -0600983
984 if (!sample_addr_correlates_sym(attr))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300985 goto out;
David Ahern7cec0922011-05-30 13:08:23 -0600986
Arnaldo Carvalho de Meloc2740a82016-03-22 18:44:46 -0300987 thread__resolve(thread, &al, sample);
David Ahern7cec0922011-05-30 13:08:23 -0600988
989 if (PRINT_FIELD(SYM)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300990 printed += fprintf(fp, " ");
Akihiro Nagaia978f2a2012-01-30 13:43:15 +0900991 if (PRINT_FIELD(SYMOFFSET))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300992 printed += symbol__fprintf_symname_offs(al.sym, &al, fp);
Akihiro Nagaia978f2a2012-01-30 13:43:15 +0900993 else
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300994 printed += symbol__fprintf_symname(al.sym, fp);
David Ahern7cec0922011-05-30 13:08:23 -0600995 }
996
997 if (PRINT_FIELD(DSO)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300998 printed += fprintf(fp, " (");
999 printed += map__fprintf_dsoname(al.map, fp);
1000 printed += fprintf(fp, ")");
David Ahern7cec0922011-05-30 13:08:23 -06001001 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001002out:
1003 return printed;
David Ahern7cec0922011-05-30 13:08:23 -06001004}
1005
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001006static int perf_sample__fprintf_callindent(struct perf_sample *sample,
1007 struct perf_evsel *evsel,
1008 struct thread *thread,
1009 struct addr_location *al, FILE *fp)
Adrian Huntere2167082016-06-23 16:40:58 +03001010{
1011 struct perf_event_attr *attr = &evsel->attr;
1012 size_t depth = thread_stack__depth(thread);
1013 struct addr_location addr_al;
1014 const char *name = NULL;
1015 static int spacing;
1016 int len = 0;
1017 u64 ip = 0;
1018
1019 /*
1020 * The 'return' has already been popped off the stack so the depth has
1021 * to be adjusted to match the 'call'.
1022 */
1023 if (thread->ts && sample->flags & PERF_IP_FLAG_RETURN)
1024 depth += 1;
1025
1026 if (sample->flags & (PERF_IP_FLAG_CALL | PERF_IP_FLAG_TRACE_BEGIN)) {
1027 if (sample_addr_correlates_sym(attr)) {
1028 thread__resolve(thread, &addr_al, sample);
1029 if (addr_al.sym)
1030 name = addr_al.sym->name;
1031 else
1032 ip = sample->addr;
1033 } else {
1034 ip = sample->addr;
1035 }
1036 } else if (sample->flags & (PERF_IP_FLAG_RETURN | PERF_IP_FLAG_TRACE_END)) {
1037 if (al->sym)
1038 name = al->sym->name;
1039 else
1040 ip = sample->ip;
1041 }
1042
1043 if (name)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001044 len = fprintf(fp, "%*s%s", (int)depth * 4, "", name);
Adrian Huntere2167082016-06-23 16:40:58 +03001045 else if (ip)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001046 len = fprintf(fp, "%*s%16" PRIx64, (int)depth * 4, "", ip);
Adrian Huntere2167082016-06-23 16:40:58 +03001047
1048 if (len < 0)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001049 return len;
Adrian Huntere2167082016-06-23 16:40:58 +03001050
1051 /*
1052 * Try to keep the output length from changing frequently so that the
1053 * output lines up more nicely.
1054 */
1055 if (len > spacing || (len && len < spacing - 52))
1056 spacing = round_up(len + 4, 32);
1057
1058 if (len < spacing)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001059 len += fprintf(fp, "%*s", spacing - len, "");
1060
1061 return len;
Adrian Huntere2167082016-06-23 16:40:58 +03001062}
1063
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001064static int perf_sample__fprintf_insn(struct perf_sample *sample,
1065 struct perf_event_attr *attr,
1066 struct thread *thread,
1067 struct machine *machine, FILE *fp)
Andi Kleen224e2c92016-10-07 16:42:27 +03001068{
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001069 int printed = 0;
1070
Andi Kleen224e2c92016-10-07 16:42:27 +03001071 if (PRINT_FIELD(INSNLEN))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001072 printed += fprintf(fp, " ilen: %d", sample->insn_len);
Andi Kleen224e2c92016-10-07 16:42:27 +03001073 if (PRINT_FIELD(INSN)) {
1074 int i;
1075
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001076 printed += fprintf(fp, " insn:");
Andi Kleen224e2c92016-10-07 16:42:27 +03001077 for (i = 0; i < sample->insn_len; i++)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001078 printed += fprintf(fp, " %02x", (unsigned char)sample->insn[i]);
Andi Kleen224e2c92016-10-07 16:42:27 +03001079 }
Andi Kleen48d02a12017-02-23 15:46:34 -08001080 if (PRINT_FIELD(BRSTACKINSN))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001081 printed += perf_sample__fprintf_brstackinsn(sample, thread, attr, machine, fp);
1082
1083 return printed;
Andi Kleen224e2c92016-10-07 16:42:27 +03001084}
1085
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001086static int perf_sample__fprintf_bts(struct perf_sample *sample,
1087 struct perf_evsel *evsel,
1088 struct thread *thread,
1089 struct addr_location *al,
1090 struct machine *machine, FILE *fp)
Akihiro Nagai95582592012-01-30 13:43:09 +09001091{
1092 struct perf_event_attr *attr = &evsel->attr;
Adrian Hunter14057202017-06-21 13:17:19 +03001093 unsigned int type = output_type(attr->type);
Adrian Hunter8066be5f2014-07-22 16:17:15 +03001094 bool print_srcline_last = false;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001095 int printed = 0;
Akihiro Nagai95582592012-01-30 13:43:09 +09001096
Adrian Huntere2167082016-06-23 16:40:58 +03001097 if (PRINT_FIELD(CALLINDENT))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001098 printed += perf_sample__fprintf_callindent(sample, evsel, thread, al, fp);
Adrian Huntere2167082016-06-23 16:40:58 +03001099
Akihiro Nagai95582592012-01-30 13:43:09 +09001100 /* print branch_from information */
1101 if (PRINT_FIELD(IP)) {
Adrian Hunter14057202017-06-21 13:17:19 +03001102 unsigned int print_opts = output[type].print_ip_opts;
Chris Phlipote557b672016-04-19 19:32:11 -07001103 struct callchain_cursor *cursor = NULL;
Adrian Hunter8066be5f2014-07-22 16:17:15 +03001104
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03001105 if (symbol_conf.use_callchain && sample->callchain &&
Chris Phlipote557b672016-04-19 19:32:11 -07001106 thread__resolve_callchain(al->thread, &callchain_cursor, evsel,
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03001107 sample, NULL, NULL, scripting_max_stack) == 0)
Chris Phlipote557b672016-04-19 19:32:11 -07001108 cursor = &callchain_cursor;
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03001109
1110 if (cursor == NULL) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001111 printed += fprintf(fp, " ");
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -03001112 if (print_opts & EVSEL__PRINT_SRCLINE) {
Adrian Hunter8066be5f2014-07-22 16:17:15 +03001113 print_srcline_last = true;
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -03001114 print_opts &= ~EVSEL__PRINT_SRCLINE;
Adrian Hunter8066be5f2014-07-22 16:17:15 +03001115 }
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03001116 } else
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001117 printed += fprintf(fp, "\n");
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03001118
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001119 printed += sample__fprintf_sym(sample, al, 0, print_opts, cursor, fp);
Akihiro Nagai95582592012-01-30 13:43:09 +09001120 }
1121
Akihiro Nagai95582592012-01-30 13:43:09 +09001122 /* print branch_to information */
Adrian Hunter243be3d2013-10-18 15:29:14 +03001123 if (PRINT_FIELD(ADDR) ||
1124 ((evsel->attr.sample_type & PERF_SAMPLE_ADDR) &&
Adrian Hunter14057202017-06-21 13:17:19 +03001125 !output[type].user_set)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001126 printed += fprintf(fp, " => ");
1127 printed += perf_sample__fprintf_addr(sample, thread, attr, fp);
Adrian Hunter578bea42014-07-22 16:17:16 +03001128 }
Akihiro Nagai95582592012-01-30 13:43:09 +09001129
Adrian Hunter8066be5f2014-07-22 16:17:15 +03001130 if (print_srcline_last)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001131 printed += map__fprintf_srcline(al->map, al->addr, "\n ", fp);
Adrian Hunter8066be5f2014-07-22 16:17:15 +03001132
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001133 printed += perf_sample__fprintf_insn(sample, attr, thread, machine, fp);
1134 return printed + fprintf(fp, "\n");
Akihiro Nagai95582592012-01-30 13:43:09 +09001135}
1136
Adrian Hunter055cd332016-06-23 16:40:56 +03001137static struct {
1138 u32 flags;
1139 const char *name;
1140} sample_flags[] = {
1141 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL, "call"},
1142 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN, "return"},
1143 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CONDITIONAL, "jcc"},
1144 {PERF_IP_FLAG_BRANCH, "jmp"},
1145 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_INTERRUPT, "int"},
1146 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | PERF_IP_FLAG_INTERRUPT, "iret"},
1147 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_SYSCALLRET, "syscall"},
1148 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | PERF_IP_FLAG_SYSCALLRET, "sysret"},
1149 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_ASYNC, "async"},
1150 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_ASYNC | PERF_IP_FLAG_INTERRUPT, "hw int"},
1151 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TX_ABORT, "tx abrt"},
1152 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TRACE_BEGIN, "tr strt"},
1153 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TRACE_END, "tr end"},
1154 {0, NULL}
1155};
1156
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001157static int perf_sample__fprintf_flags(u32 flags, FILE *fp)
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001158{
1159 const char *chars = PERF_IP_FLAG_CHARS;
1160 const int n = strlen(PERF_IP_FLAG_CHARS);
Adrian Hunter055cd332016-06-23 16:40:56 +03001161 bool in_tx = flags & PERF_IP_FLAG_IN_TX;
1162 const char *name = NULL;
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001163 char str[33];
1164 int i, pos = 0;
1165
Adrian Hunter055cd332016-06-23 16:40:56 +03001166 for (i = 0; sample_flags[i].name ; i++) {
1167 if (sample_flags[i].flags == (flags & ~PERF_IP_FLAG_IN_TX)) {
1168 name = sample_flags[i].name;
1169 break;
1170 }
1171 }
1172
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001173 for (i = 0; i < n; i++, flags >>= 1) {
1174 if (flags & 1)
1175 str[pos++] = chars[i];
1176 }
1177 for (; i < 32; i++, flags >>= 1) {
1178 if (flags & 1)
1179 str[pos++] = '?';
1180 }
1181 str[pos] = 0;
Adrian Hunter055cd332016-06-23 16:40:56 +03001182
1183 if (name)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001184 return fprintf(fp, " %-7s%4s ", name, in_tx ? "(x)" : "");
1185
1186 return fprintf(fp, " %-11s ", str);
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001187}
1188
Wang Nan30372f02016-02-24 11:20:45 +00001189struct printer_data {
1190 int line_no;
1191 bool hit_nul;
1192 bool is_printable;
1193};
1194
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001195static int sample__fprintf_bpf_output(enum binary_printer_ops op,
1196 unsigned int val,
1197 void *extra, FILE *fp)
Wang Nan30372f02016-02-24 11:20:45 +00001198{
1199 unsigned char ch = (unsigned char)val;
1200 struct printer_data *printer_data = extra;
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001201 int printed = 0;
Wang Nan30372f02016-02-24 11:20:45 +00001202
1203 switch (op) {
1204 case BINARY_PRINT_DATA_BEGIN:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001205 printed += fprintf(fp, "\n");
Wang Nan30372f02016-02-24 11:20:45 +00001206 break;
1207 case BINARY_PRINT_LINE_BEGIN:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001208 printed += fprintf(fp, "%17s", !printer_data->line_no ? "BPF output:" :
Wang Nan30372f02016-02-24 11:20:45 +00001209 " ");
1210 break;
1211 case BINARY_PRINT_ADDR:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001212 printed += fprintf(fp, " %04x:", val);
Wang Nan30372f02016-02-24 11:20:45 +00001213 break;
1214 case BINARY_PRINT_NUM_DATA:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001215 printed += fprintf(fp, " %02x", val);
Wang Nan30372f02016-02-24 11:20:45 +00001216 break;
1217 case BINARY_PRINT_NUM_PAD:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001218 printed += fprintf(fp, " ");
Wang Nan30372f02016-02-24 11:20:45 +00001219 break;
1220 case BINARY_PRINT_SEP:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001221 printed += fprintf(fp, " ");
Wang Nan30372f02016-02-24 11:20:45 +00001222 break;
1223 case BINARY_PRINT_CHAR_DATA:
1224 if (printer_data->hit_nul && ch)
1225 printer_data->is_printable = false;
1226
1227 if (!isprint(ch)) {
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001228 printed += fprintf(fp, "%c", '.');
Wang Nan30372f02016-02-24 11:20:45 +00001229
1230 if (!printer_data->is_printable)
1231 break;
1232
1233 if (ch == '\0')
1234 printer_data->hit_nul = true;
1235 else
1236 printer_data->is_printable = false;
1237 } else {
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001238 printed += fprintf(fp, "%c", ch);
Wang Nan30372f02016-02-24 11:20:45 +00001239 }
1240 break;
1241 case BINARY_PRINT_CHAR_PAD:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001242 printed += fprintf(fp, " ");
Wang Nan30372f02016-02-24 11:20:45 +00001243 break;
1244 case BINARY_PRINT_LINE_END:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001245 printed += fprintf(fp, "\n");
Wang Nan30372f02016-02-24 11:20:45 +00001246 printer_data->line_no++;
1247 break;
1248 case BINARY_PRINT_DATA_END:
1249 default:
1250 break;
1251 }
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001252
1253 return printed;
Wang Nan30372f02016-02-24 11:20:45 +00001254}
1255
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001256static int perf_sample__fprintf_bpf_output(struct perf_sample *sample, FILE *fp)
Wang Nan30372f02016-02-24 11:20:45 +00001257{
1258 unsigned int nr_bytes = sample->raw_size;
1259 struct printer_data printer_data = {0, false, true};
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001260 int printed = binary__fprintf(sample->raw_data, nr_bytes, 8,
1261 sample__fprintf_bpf_output, &printer_data, fp);
Wang Nan30372f02016-02-24 11:20:45 +00001262
1263 if (printer_data.is_printable && printer_data.hit_nul)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001264 printed += fprintf(fp, "%17s \"%s\"\n", "BPF string:", (char *)(sample->raw_data));
1265
1266 return printed;
Wang Nan30372f02016-02-24 11:20:45 +00001267}
1268
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001269static int perf_sample__fprintf_spacing(int len, int spacing, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001270{
1271 if (len > 0 && len < spacing)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001272 return fprintf(fp, "%*s", spacing - len, "");
1273
1274 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001275}
1276
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001277static int perf_sample__fprintf_pt_spacing(int len, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001278{
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001279 return perf_sample__fprintf_spacing(len, 34, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001280}
1281
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001282static int perf_sample__fprintf_synth_ptwrite(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001283{
1284 struct perf_synth_intel_ptwrite *data = perf_sample__synth_ptr(sample);
1285 int len;
1286
1287 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001288 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001289
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001290 len = fprintf(fp, " IP: %u payload: %#" PRIx64 " ",
Adrian Hunter65c5e182017-06-30 11:36:42 +03001291 data->ip, le64_to_cpu(data->payload));
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001292 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001293}
1294
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001295static int perf_sample__fprintf_synth_mwait(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001296{
1297 struct perf_synth_intel_mwait *data = perf_sample__synth_ptr(sample);
1298 int len;
1299
1300 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001301 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001302
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001303 len = fprintf(fp, " hints: %#x extensions: %#x ",
1304 data->hints, data->extensions);
1305 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001306}
1307
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001308static int perf_sample__fprintf_synth_pwre(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001309{
1310 struct perf_synth_intel_pwre *data = perf_sample__synth_ptr(sample);
1311 int len;
1312
1313 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001314 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001315
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001316 len = fprintf(fp, " hw: %u cstate: %u sub-cstate: %u ",
1317 data->hw, data->cstate, data->subcstate);
1318 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001319}
1320
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001321static int perf_sample__fprintf_synth_exstop(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001322{
1323 struct perf_synth_intel_exstop *data = perf_sample__synth_ptr(sample);
1324 int len;
1325
1326 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001327 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001328
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001329 len = fprintf(fp, " IP: %u ", data->ip);
1330 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001331}
1332
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001333static int perf_sample__fprintf_synth_pwrx(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001334{
1335 struct perf_synth_intel_pwrx *data = perf_sample__synth_ptr(sample);
1336 int len;
1337
1338 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001339 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001340
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001341 len = fprintf(fp, " deepest cstate: %u last cstate: %u wake reason: %#x ",
Adrian Hunter65c5e182017-06-30 11:36:42 +03001342 data->deepest_cstate, data->last_cstate,
1343 data->wake_reason);
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001344 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001345}
1346
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001347static int perf_sample__fprintf_synth_cbr(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001348{
1349 struct perf_synth_intel_cbr *data = perf_sample__synth_ptr(sample);
1350 unsigned int percent, freq;
1351 int len;
1352
1353 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001354 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001355
1356 freq = (le32_to_cpu(data->freq) + 500) / 1000;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001357 len = fprintf(fp, " cbr: %2u freq: %4u MHz ", data->cbr, freq);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001358 if (data->max_nonturbo) {
1359 percent = (5 + (1000 * data->cbr) / data->max_nonturbo) / 10;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001360 len += fprintf(fp, "(%3u%%) ", percent);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001361 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001362 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001363}
1364
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001365static int perf_sample__fprintf_synth(struct perf_sample *sample,
1366 struct perf_evsel *evsel, FILE *fp)
Adrian Hunter47e78082017-05-26 11:17:22 +03001367{
1368 switch (evsel->attr.config) {
Adrian Hunter65c5e182017-06-30 11:36:42 +03001369 case PERF_SYNTH_INTEL_PTWRITE:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001370 return perf_sample__fprintf_synth_ptwrite(sample, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001371 case PERF_SYNTH_INTEL_MWAIT:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001372 return perf_sample__fprintf_synth_mwait(sample, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001373 case PERF_SYNTH_INTEL_PWRE:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001374 return perf_sample__fprintf_synth_pwre(sample, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001375 case PERF_SYNTH_INTEL_EXSTOP:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001376 return perf_sample__fprintf_synth_exstop(sample, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001377 case PERF_SYNTH_INTEL_PWRX:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001378 return perf_sample__fprintf_synth_pwrx(sample, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001379 case PERF_SYNTH_INTEL_CBR:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001380 return perf_sample__fprintf_synth_cbr(sample, fp);
Adrian Hunter47e78082017-05-26 11:17:22 +03001381 default:
1382 break;
1383 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001384
1385 return 0;
Adrian Hunter47e78082017-05-26 11:17:22 +03001386}
1387
Jiri Olsa809e9422015-11-26 18:55:21 +01001388struct perf_script {
1389 struct perf_tool tool;
1390 struct perf_session *session;
1391 bool show_task_events;
1392 bool show_mmap_events;
1393 bool show_switch_events;
Hari Bathini96a44bb2017-03-08 02:12:06 +05301394 bool show_namespace_events;
Jiri Olsacfc88742016-01-05 22:09:06 +01001395 bool allocated;
1396 struct cpu_map *cpus;
1397 struct thread_map *threads;
Jiri Olsa9cdbc402016-01-07 10:14:05 +01001398 int name_width;
David Aherna91f4c42016-11-29 10:15:43 -07001399 const char *time_str;
1400 struct perf_time_interval ptime;
Jiri Olsa809e9422015-11-26 18:55:21 +01001401};
1402
Jiri Olsa9cdbc402016-01-07 10:14:05 +01001403static int perf_evlist__max_name_len(struct perf_evlist *evlist)
1404{
1405 struct perf_evsel *evsel;
1406 int max = 0;
1407
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03001408 evlist__for_each_entry(evlist, evsel) {
Jiri Olsa9cdbc402016-01-07 10:14:05 +01001409 int len = strlen(perf_evsel__name(evsel));
1410
1411 max = MAX(len, max);
1412 }
1413
1414 return max;
1415}
1416
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001417static int data_src__fprintf(u64 data_src, FILE *fp)
Jiri Olsac19ac912016-02-24 09:46:54 +01001418{
1419 struct mem_info mi = { .data_src.val = data_src };
1420 char decode[100];
1421 char out[100];
1422 static int maxlen;
1423 int len;
1424
1425 perf_script__meminfo_scnprintf(decode, 100, &mi);
1426
1427 len = scnprintf(out, 100, "%16" PRIx64 " %s", data_src, decode);
1428 if (maxlen < len)
1429 maxlen = len;
1430
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001431 return fprintf(fp, "%-*s", maxlen, out);
Jiri Olsac19ac912016-02-24 09:46:54 +01001432}
1433
Arnaldo Carvalho de Meloa3dff302016-03-23 11:55:24 -03001434static void process_event(struct perf_script *script,
Jiri Olsa809e9422015-11-26 18:55:21 +01001435 struct perf_sample *sample, struct perf_evsel *evsel,
Andi Kleen48d02a12017-02-23 15:46:34 -08001436 struct addr_location *al,
1437 struct machine *machine)
David Ahernbe6d8422011-03-09 22:23:23 -07001438{
Arnaldo Carvalho de Melof9d5d542015-04-01 13:29:25 -03001439 struct thread *thread = al->thread;
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -03001440 struct perf_event_attr *attr = &evsel->attr;
Adrian Hunter14057202017-06-21 13:17:19 +03001441 unsigned int type = output_type(attr->type);
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001442 FILE *fp = stdout;
David Ahern1424dc92011-03-09 22:23:28 -07001443
Adrian Hunter14057202017-06-21 13:17:19 +03001444 if (output[type].fields == 0)
David Ahern1424dc92011-03-09 22:23:28 -07001445 return;
1446
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001447 perf_sample__fprintf_start(sample, thread, evsel, fp);
David Ahern745f43e2011-03-09 22:23:26 -07001448
Jiri Olsa535aeaae2014-08-25 16:45:42 +02001449 if (PRINT_FIELD(PERIOD))
1450 printf("%10" PRIu64 " ", sample->period);
1451
Namhyung Kime944d3d2013-11-18 14:34:52 +09001452 if (PRINT_FIELD(EVNAME)) {
1453 const char *evname = perf_evsel__name(evsel);
Jiri Olsa9cdbc402016-01-07 10:14:05 +01001454
1455 if (!script->name_width)
1456 script->name_width = perf_evlist__max_name_len(script->session->evlist);
1457
1458 printf("%*s: ", script->name_width,
1459 evname ? evname : "[unknown]");
Namhyung Kime944d3d2013-11-18 14:34:52 +09001460 }
1461
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001462 if (print_flags)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001463 perf_sample__fprintf_flags(sample->flags, fp);
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001464
Akihiro Nagai95582592012-01-30 13:43:09 +09001465 if (is_bts_event(attr)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001466 perf_sample__fprintf_bts(sample, evsel, thread, al, machine, fp);
Akihiro Nagai95582592012-01-30 13:43:09 +09001467 return;
1468 }
1469
David Ahern745f43e2011-03-09 22:23:26 -07001470 if (PRINT_FIELD(TRACE))
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -03001471 event_format__print(evsel->tp_format, sample->cpu,
1472 sample->raw_data, sample->raw_size);
Adrian Hunter47e78082017-05-26 11:17:22 +03001473
1474 if (attr->type == PERF_TYPE_SYNTH && PRINT_FIELD(SYNTH))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001475 perf_sample__fprintf_synth(sample, evsel, fp);
Adrian Hunter47e78082017-05-26 11:17:22 +03001476
David Ahern7cec0922011-05-30 13:08:23 -06001477 if (PRINT_FIELD(ADDR))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001478 perf_sample__fprintf_addr(sample, thread, attr, fp);
David Ahern7cec0922011-05-30 13:08:23 -06001479
Jiri Olsa94ddddf2016-02-15 09:34:51 +01001480 if (PRINT_FIELD(DATA_SRC))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001481 data_src__fprintf(sample->data_src, fp);
Jiri Olsa94ddddf2016-02-15 09:34:51 +01001482
1483 if (PRINT_FIELD(WEIGHT))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001484 fprintf(fp, "%16" PRIu64, sample->weight);
Jiri Olsa94ddddf2016-02-15 09:34:51 +01001485
David Ahern787bef12011-05-27 14:28:43 -06001486 if (PRINT_FIELD(IP)) {
Chris Phlipote557b672016-04-19 19:32:11 -07001487 struct callchain_cursor *cursor = NULL;
David Aherna6ffaf92013-08-07 22:50:51 -04001488
Arnaldo Carvalho de Melo92231522016-04-18 11:31:46 -03001489 if (symbol_conf.use_callchain && sample->callchain &&
Chris Phlipote557b672016-04-19 19:32:11 -07001490 thread__resolve_callchain(al->thread, &callchain_cursor, evsel,
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03001491 sample, NULL, NULL, scripting_max_stack) == 0)
Chris Phlipote557b672016-04-19 19:32:11 -07001492 cursor = &callchain_cursor;
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03001493
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001494 fputc(cursor ? '\n' : ' ', fp);
1495 sample__fprintf_sym(sample, al, 0, output[type].print_ip_opts, cursor, fp);
David Ahernc0230b22011-03-09 22:23:27 -07001496 }
1497
Stephane Eranianfc36f942015-08-31 18:41:10 +02001498 if (PRINT_FIELD(IREGS))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001499 perf_sample__fprintf_iregs(sample, attr, fp);
Stephane Eranianfc36f942015-08-31 18:41:10 +02001500
Andi Kleenb1491ac2017-09-05 11:40:57 -07001501 if (PRINT_FIELD(UREGS))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001502 perf_sample__fprintf_uregs(sample, attr, fp);
Andi Kleenb1491ac2017-09-05 11:40:57 -07001503
Stephane Eraniandc323ce2015-08-31 18:41:13 +02001504 if (PRINT_FIELD(BRSTACK))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001505 perf_sample__fprintf_brstack(sample, thread, attr, fp);
Stephane Eraniandc323ce2015-08-31 18:41:13 +02001506 else if (PRINT_FIELD(BRSTACKSYM))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001507 perf_sample__fprintf_brstacksym(sample, thread, attr, fp);
Mark Santaniello106dacd2017-06-19 09:38:25 -07001508 else if (PRINT_FIELD(BRSTACKOFF))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001509 perf_sample__fprintf_brstackoff(sample, thread, attr, fp);
Stephane Eraniandc323ce2015-08-31 18:41:13 +02001510
Wang Nan30372f02016-02-24 11:20:45 +00001511 if (perf_evsel__is_bpf_output(evsel) && PRINT_FIELD(BPF_OUTPUT))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001512 perf_sample__fprintf_bpf_output(sample, fp);
1513 perf_sample__fprintf_insn(sample, attr, thread, machine, fp);
Kan Liang49d58f02017-08-29 13:11:11 -04001514
1515 if (PRINT_FIELD(PHYS_ADDR))
1516 printf("%16" PRIx64, sample->phys_addr);
David Ahernc70c94b2011-03-09 22:23:25 -07001517 printf("\n");
David Ahernbe6d8422011-03-09 22:23:23 -07001518}
1519
Tom Zanussi956ffd02009-11-25 01:15:46 -06001520static struct scripting_ops *scripting_ops;
1521
Jiri Olsa36e33c52016-01-06 11:49:56 +01001522static void __process_stat(struct perf_evsel *counter, u64 tstamp)
1523{
1524 int nthreads = thread_map__nr(counter->threads);
1525 int ncpus = perf_evsel__nr_cpus(counter);
1526 int cpu, thread;
1527 static int header_printed;
1528
1529 if (counter->system_wide)
1530 nthreads = 1;
1531
1532 if (!header_printed) {
1533 printf("%3s %8s %15s %15s %15s %15s %s\n",
1534 "CPU", "THREAD", "VAL", "ENA", "RUN", "TIME", "EVENT");
1535 header_printed = 1;
1536 }
1537
1538 for (thread = 0; thread < nthreads; thread++) {
1539 for (cpu = 0; cpu < ncpus; cpu++) {
1540 struct perf_counts_values *counts;
1541
1542 counts = perf_counts(counter->counts, cpu, thread);
1543
1544 printf("%3d %8d %15" PRIu64 " %15" PRIu64 " %15" PRIu64 " %15" PRIu64 " %s\n",
1545 counter->cpus->map[cpu],
1546 thread_map__pid(counter->threads, thread),
1547 counts->val,
1548 counts->ena,
1549 counts->run,
1550 tstamp,
1551 perf_evsel__name(counter));
1552 }
1553 }
1554}
1555
Jiri Olsae099eba2016-01-05 22:09:09 +01001556static void process_stat(struct perf_evsel *counter, u64 tstamp)
1557{
1558 if (scripting_ops && scripting_ops->process_stat)
1559 scripting_ops->process_stat(&stat_config, counter, tstamp);
Jiri Olsa36e33c52016-01-06 11:49:56 +01001560 else
1561 __process_stat(counter, tstamp);
Jiri Olsae099eba2016-01-05 22:09:09 +01001562}
1563
1564static void process_stat_interval(u64 tstamp)
1565{
1566 if (scripting_ops && scripting_ops->process_stat_interval)
1567 scripting_ops->process_stat_interval(tstamp);
1568}
1569
Tom Zanussi956ffd02009-11-25 01:15:46 -06001570static void setup_scripting(void)
1571{
Tom Zanussi16c632d2009-11-25 01:15:48 -06001572 setup_perl_scripting();
Tom Zanussi7e4b21b2010-01-27 02:27:57 -06001573 setup_python_scripting();
Tom Zanussi956ffd02009-11-25 01:15:46 -06001574}
1575
Adrian Hunterd445dd22014-08-15 22:08:37 +03001576static int flush_scripting(void)
1577{
Jiri Olsa2aaecfc2015-11-26 14:55:23 +01001578 return scripting_ops ? scripting_ops->flush_script() : 0;
Adrian Hunterd445dd22014-08-15 22:08:37 +03001579}
1580
Tom Zanussi956ffd02009-11-25 01:15:46 -06001581static int cleanup_scripting(void)
1582{
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001583 pr_debug("\nperf script stopped\n");
Tom Zanussi3824a4e2010-05-09 23:46:57 -05001584
Jiri Olsa2aaecfc2015-11-26 14:55:23 +01001585 return scripting_ops ? scripting_ops->stop_script() : 0;
Tom Zanussi956ffd02009-11-25 01:15:46 -06001586}
1587
Jiri Olsa809e9422015-11-26 18:55:21 +01001588static int process_sample_event(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -02001589 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02001590 struct perf_sample *sample,
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -03001591 struct perf_evsel *evsel,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -02001592 struct machine *machine)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001593{
Jiri Olsa809e9422015-11-26 18:55:21 +01001594 struct perf_script *scr = container_of(tool, struct perf_script, tool);
David Aherne7984b72011-11-21 10:02:52 -07001595 struct addr_location al;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001596
David Aherna91f4c42016-11-29 10:15:43 -07001597 if (perf_time__skip_sample(&scr->ptime, sample->time))
1598 return 0;
1599
David Ahern1424dc92011-03-09 22:23:28 -07001600 if (debug_mode) {
1601 if (sample->time < last_timestamp) {
1602 pr_err("Samples misordered, previous: %" PRIu64
1603 " this: %" PRIu64 "\n", last_timestamp,
1604 sample->time);
1605 nr_unordered++;
Frederic Weisbeckere1889d72010-04-24 01:55:09 +02001606 }
David Ahern1424dc92011-03-09 22:23:28 -07001607 last_timestamp = sample->time;
1608 return 0;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001609 }
Anton Blanchard5d67be92011-07-04 21:57:50 +10001610
Arnaldo Carvalho de Melobb3eb562016-03-22 18:39:09 -03001611 if (machine__resolve(machine, &al, sample) < 0) {
David Aherne7984b72011-11-21 10:02:52 -07001612 pr_err("problem processing %d event, skipping it.\n",
1613 event->header.type);
1614 return -1;
1615 }
1616
1617 if (al.filtered)
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001618 goto out_put;
David Aherne7984b72011-11-21 10:02:52 -07001619
Anton Blanchard5d67be92011-07-04 21:57:50 +10001620 if (cpu_list && !test_bit(sample->cpu, cpu_bitmap))
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001621 goto out_put;
Anton Blanchard5d67be92011-07-04 21:57:50 +10001622
Jiri Olsa2aaecfc2015-11-26 14:55:23 +01001623 if (scripting_ops)
1624 scripting_ops->process_event(event, sample, evsel, &al);
1625 else
Andi Kleen48d02a12017-02-23 15:46:34 -08001626 process_event(scr, sample, evsel, &al, machine);
Jiri Olsa2aaecfc2015-11-26 14:55:23 +01001627
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001628out_put:
1629 addr_location__put(&al);
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001630 return 0;
1631}
1632
Adrian Hunter7ea95722013-11-01 15:51:30 +02001633static int process_attr(struct perf_tool *tool, union perf_event *event,
1634 struct perf_evlist **pevlist)
1635{
1636 struct perf_script *scr = container_of(tool, struct perf_script, tool);
1637 struct perf_evlist *evlist;
1638 struct perf_evsel *evsel, *pos;
1639 int err;
1640
1641 err = perf_event__process_attr(tool, event, pevlist);
1642 if (err)
1643 return err;
1644
1645 evlist = *pevlist;
1646 evsel = perf_evlist__last(*pevlist);
1647
Adrian Hunter14057202017-06-21 13:17:19 +03001648 if (evsel->attr.type >= PERF_TYPE_MAX &&
1649 evsel->attr.type != PERF_TYPE_SYNTH)
Adrian Hunter7ea95722013-11-01 15:51:30 +02001650 return 0;
1651
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03001652 evlist__for_each_entry(evlist, pos) {
Adrian Hunter7ea95722013-11-01 15:51:30 +02001653 if (pos->attr.type == evsel->attr.type && pos != evsel)
1654 return 0;
1655 }
1656
1657 set_print_ip_opts(&evsel->attr);
1658
Jiri Olsad2b5a312015-10-16 12:41:25 +02001659 if (evsel->attr.sample_type)
1660 err = perf_evsel__check_attr(evsel, scr->session);
1661
1662 return err;
Adrian Hunter7ea95722013-11-01 15:51:30 +02001663}
1664
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001665static int process_comm_event(struct perf_tool *tool,
1666 union perf_event *event,
1667 struct perf_sample *sample,
1668 struct machine *machine)
1669{
1670 struct thread *thread;
1671 struct perf_script *script = container_of(tool, struct perf_script, tool);
1672 struct perf_session *session = script->session;
Adrian Hunter06b234e2015-07-21 12:44:05 +03001673 struct perf_evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001674 int ret = -1;
1675
1676 thread = machine__findnew_thread(machine, event->comm.pid, event->comm.tid);
1677 if (thread == NULL) {
1678 pr_debug("problem processing COMM event, skipping it.\n");
1679 return -1;
1680 }
1681
1682 if (perf_event__process_comm(tool, event, sample, machine) < 0)
1683 goto out;
1684
1685 if (!evsel->attr.sample_id_all) {
1686 sample->cpu = 0;
1687 sample->time = 0;
1688 sample->tid = event->comm.tid;
1689 sample->pid = event->comm.pid;
1690 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001691 perf_sample__fprintf_start(sample, thread, evsel, stdout);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001692 perf_event__fprintf(event, stdout);
1693 ret = 0;
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001694out:
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001695 thread__put(thread);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001696 return ret;
1697}
1698
Hari Bathini96a44bb2017-03-08 02:12:06 +05301699static int process_namespaces_event(struct perf_tool *tool,
1700 union perf_event *event,
1701 struct perf_sample *sample,
1702 struct machine *machine)
1703{
1704 struct thread *thread;
1705 struct perf_script *script = container_of(tool, struct perf_script, tool);
1706 struct perf_session *session = script->session;
1707 struct perf_evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
1708 int ret = -1;
1709
1710 thread = machine__findnew_thread(machine, event->namespaces.pid,
1711 event->namespaces.tid);
1712 if (thread == NULL) {
1713 pr_debug("problem processing NAMESPACES event, skipping it.\n");
1714 return -1;
1715 }
1716
1717 if (perf_event__process_namespaces(tool, event, sample, machine) < 0)
1718 goto out;
1719
1720 if (!evsel->attr.sample_id_all) {
1721 sample->cpu = 0;
1722 sample->time = 0;
1723 sample->tid = event->namespaces.tid;
1724 sample->pid = event->namespaces.pid;
1725 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001726 perf_sample__fprintf_start(sample, thread, evsel, stdout);
Hari Bathini96a44bb2017-03-08 02:12:06 +05301727 perf_event__fprintf(event, stdout);
1728 ret = 0;
1729out:
1730 thread__put(thread);
1731 return ret;
1732}
1733
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001734static int process_fork_event(struct perf_tool *tool,
1735 union perf_event *event,
1736 struct perf_sample *sample,
1737 struct machine *machine)
1738{
1739 struct thread *thread;
1740 struct perf_script *script = container_of(tool, struct perf_script, tool);
1741 struct perf_session *session = script->session;
Adrian Hunter06b234e2015-07-21 12:44:05 +03001742 struct perf_evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001743
1744 if (perf_event__process_fork(tool, event, sample, machine) < 0)
1745 return -1;
1746
1747 thread = machine__findnew_thread(machine, event->fork.pid, event->fork.tid);
1748 if (thread == NULL) {
1749 pr_debug("problem processing FORK event, skipping it.\n");
1750 return -1;
1751 }
1752
1753 if (!evsel->attr.sample_id_all) {
1754 sample->cpu = 0;
1755 sample->time = event->fork.time;
1756 sample->tid = event->fork.tid;
1757 sample->pid = event->fork.pid;
1758 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001759 perf_sample__fprintf_start(sample, thread, evsel, stdout);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001760 perf_event__fprintf(event, stdout);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001761 thread__put(thread);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001762
1763 return 0;
1764}
1765static int process_exit_event(struct perf_tool *tool,
1766 union perf_event *event,
1767 struct perf_sample *sample,
1768 struct machine *machine)
1769{
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001770 int err = 0;
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001771 struct thread *thread;
1772 struct perf_script *script = container_of(tool, struct perf_script, tool);
1773 struct perf_session *session = script->session;
Adrian Hunter06b234e2015-07-21 12:44:05 +03001774 struct perf_evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001775
1776 thread = machine__findnew_thread(machine, event->fork.pid, event->fork.tid);
1777 if (thread == NULL) {
1778 pr_debug("problem processing EXIT event, skipping it.\n");
1779 return -1;
1780 }
1781
1782 if (!evsel->attr.sample_id_all) {
1783 sample->cpu = 0;
1784 sample->time = 0;
Adrian Hunter53ff6bc2015-08-18 12:07:05 +03001785 sample->tid = event->fork.tid;
1786 sample->pid = event->fork.pid;
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001787 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001788 perf_sample__fprintf_start(sample, thread, evsel, stdout);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001789 perf_event__fprintf(event, stdout);
1790
1791 if (perf_event__process_exit(tool, event, sample, machine) < 0)
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001792 err = -1;
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001793
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001794 thread__put(thread);
1795 return err;
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001796}
1797
Namhyung Kimba1ddf42013-11-26 17:54:26 +09001798static int process_mmap_event(struct perf_tool *tool,
1799 union perf_event *event,
1800 struct perf_sample *sample,
1801 struct machine *machine)
1802{
1803 struct thread *thread;
1804 struct perf_script *script = container_of(tool, struct perf_script, tool);
1805 struct perf_session *session = script->session;
Adrian Hunter06b234e2015-07-21 12:44:05 +03001806 struct perf_evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
Namhyung Kimba1ddf42013-11-26 17:54:26 +09001807
1808 if (perf_event__process_mmap(tool, event, sample, machine) < 0)
1809 return -1;
1810
1811 thread = machine__findnew_thread(machine, event->mmap.pid, event->mmap.tid);
1812 if (thread == NULL) {
1813 pr_debug("problem processing MMAP event, skipping it.\n");
1814 return -1;
1815 }
1816
1817 if (!evsel->attr.sample_id_all) {
1818 sample->cpu = 0;
1819 sample->time = 0;
1820 sample->tid = event->mmap.tid;
1821 sample->pid = event->mmap.pid;
1822 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001823 perf_sample__fprintf_start(sample, thread, evsel, stdout);
Namhyung Kimba1ddf42013-11-26 17:54:26 +09001824 perf_event__fprintf(event, stdout);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001825 thread__put(thread);
Namhyung Kimba1ddf42013-11-26 17:54:26 +09001826 return 0;
1827}
1828
1829static int process_mmap2_event(struct perf_tool *tool,
1830 union perf_event *event,
1831 struct perf_sample *sample,
1832 struct machine *machine)
1833{
1834 struct thread *thread;
1835 struct perf_script *script = container_of(tool, struct perf_script, tool);
1836 struct perf_session *session = script->session;
Adrian Hunter06b234e2015-07-21 12:44:05 +03001837 struct perf_evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
Namhyung Kimba1ddf42013-11-26 17:54:26 +09001838
1839 if (perf_event__process_mmap2(tool, event, sample, machine) < 0)
1840 return -1;
1841
1842 thread = machine__findnew_thread(machine, event->mmap2.pid, event->mmap2.tid);
1843 if (thread == NULL) {
1844 pr_debug("problem processing MMAP2 event, skipping it.\n");
1845 return -1;
1846 }
1847
1848 if (!evsel->attr.sample_id_all) {
1849 sample->cpu = 0;
1850 sample->time = 0;
1851 sample->tid = event->mmap2.tid;
1852 sample->pid = event->mmap2.pid;
1853 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001854 perf_sample__fprintf_start(sample, thread, evsel, stdout);
Namhyung Kimba1ddf42013-11-26 17:54:26 +09001855 perf_event__fprintf(event, stdout);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001856 thread__put(thread);
Namhyung Kimba1ddf42013-11-26 17:54:26 +09001857 return 0;
1858}
1859
Adrian Hunter7c148982015-07-21 12:44:06 +03001860static int process_switch_event(struct perf_tool *tool,
1861 union perf_event *event,
1862 struct perf_sample *sample,
1863 struct machine *machine)
1864{
1865 struct thread *thread;
1866 struct perf_script *script = container_of(tool, struct perf_script, tool);
1867 struct perf_session *session = script->session;
1868 struct perf_evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
1869
1870 if (perf_event__process_switch(tool, event, sample, machine) < 0)
1871 return -1;
1872
1873 thread = machine__findnew_thread(machine, sample->pid,
1874 sample->tid);
1875 if (thread == NULL) {
1876 pr_debug("problem processing SWITCH event, skipping it.\n");
1877 return -1;
1878 }
1879
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001880 perf_sample__fprintf_start(sample, thread, evsel, stdout);
Adrian Hunter7c148982015-07-21 12:44:06 +03001881 perf_event__fprintf(event, stdout);
1882 thread__put(thread);
1883 return 0;
1884}
1885
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001886static void sig_handler(int sig __maybe_unused)
Tom Zanussic239da32010-04-01 23:59:18 -05001887{
1888 session_done = 1;
1889}
1890
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03001891static int __cmd_script(struct perf_script *script)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001892{
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +02001893 int ret;
1894
Tom Zanussic239da32010-04-01 23:59:18 -05001895 signal(SIGINT, sig_handler);
1896
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001897 /* override event processing functions */
1898 if (script->show_task_events) {
1899 script->tool.comm = process_comm_event;
1900 script->tool.fork = process_fork_event;
1901 script->tool.exit = process_exit_event;
1902 }
Namhyung Kimba1ddf42013-11-26 17:54:26 +09001903 if (script->show_mmap_events) {
1904 script->tool.mmap = process_mmap_event;
1905 script->tool.mmap2 = process_mmap2_event;
1906 }
Adrian Hunter7c148982015-07-21 12:44:06 +03001907 if (script->show_switch_events)
1908 script->tool.context_switch = process_switch_event;
Hari Bathini96a44bb2017-03-08 02:12:06 +05301909 if (script->show_namespace_events)
1910 script->tool.namespaces = process_namespaces_event;
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001911
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -03001912 ret = perf_session__process_events(script->session);
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +02001913
Arnaldo Carvalho de Melo6d8afb52011-01-04 16:27:30 -02001914 if (debug_mode)
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -02001915 pr_err("Misordered timestamps: %" PRIu64 "\n", nr_unordered);
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +02001916
1917 return ret;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001918}
1919
Tom Zanussi956ffd02009-11-25 01:15:46 -06001920struct script_spec {
1921 struct list_head node;
1922 struct scripting_ops *ops;
1923 char spec[0];
1924};
1925
Arnaldo Carvalho de Meloeccdfe22011-01-04 16:32:52 -02001926static LIST_HEAD(script_specs);
Tom Zanussi956ffd02009-11-25 01:15:46 -06001927
1928static struct script_spec *script_spec__new(const char *spec,
1929 struct scripting_ops *ops)
1930{
1931 struct script_spec *s = malloc(sizeof(*s) + strlen(spec) + 1);
1932
1933 if (s != NULL) {
1934 strcpy(s->spec, spec);
1935 s->ops = ops;
1936 }
1937
1938 return s;
1939}
1940
Tom Zanussi956ffd02009-11-25 01:15:46 -06001941static void script_spec__add(struct script_spec *s)
1942{
1943 list_add_tail(&s->node, &script_specs);
1944}
1945
1946static struct script_spec *script_spec__find(const char *spec)
1947{
1948 struct script_spec *s;
1949
1950 list_for_each_entry(s, &script_specs, node)
1951 if (strcasecmp(s->spec, spec) == 0)
1952 return s;
1953 return NULL;
1954}
1955
Tom Zanussi956ffd02009-11-25 01:15:46 -06001956int script_spec_register(const char *spec, struct scripting_ops *ops)
1957{
1958 struct script_spec *s;
1959
1960 s = script_spec__find(spec);
1961 if (s)
1962 return -1;
1963
Taeung Song8560bae2016-02-26 00:13:10 +09001964 s = script_spec__new(spec, ops);
Tom Zanussi956ffd02009-11-25 01:15:46 -06001965 if (!s)
1966 return -1;
Taeung Song8560bae2016-02-26 00:13:10 +09001967 else
1968 script_spec__add(s);
Tom Zanussi956ffd02009-11-25 01:15:46 -06001969
1970 return 0;
1971}
1972
1973static struct scripting_ops *script_spec__lookup(const char *spec)
1974{
1975 struct script_spec *s = script_spec__find(spec);
1976 if (!s)
1977 return NULL;
1978
1979 return s->ops;
1980}
1981
1982static void list_available_languages(void)
1983{
1984 struct script_spec *s;
1985
1986 fprintf(stderr, "\n");
1987 fprintf(stderr, "Scripting language extensions (used in "
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001988 "perf script -s [spec:]script.[spec]):\n\n");
Tom Zanussi956ffd02009-11-25 01:15:46 -06001989
1990 list_for_each_entry(s, &script_specs, node)
1991 fprintf(stderr, " %-42s [%s]\n", s->spec, s->ops->name);
1992
1993 fprintf(stderr, "\n");
1994}
1995
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001996static int parse_scriptname(const struct option *opt __maybe_unused,
1997 const char *str, int unset __maybe_unused)
Tom Zanussi956ffd02009-11-25 01:15:46 -06001998{
1999 char spec[PATH_MAX];
2000 const char *script, *ext;
2001 int len;
2002
Tom Zanussif526d682010-01-27 02:27:52 -06002003 if (strcmp(str, "lang") == 0) {
Tom Zanussi956ffd02009-11-25 01:15:46 -06002004 list_available_languages();
Tom Zanussif526d682010-01-27 02:27:52 -06002005 exit(0);
Tom Zanussi956ffd02009-11-25 01:15:46 -06002006 }
2007
2008 script = strchr(str, ':');
2009 if (script) {
2010 len = script - str;
2011 if (len >= PATH_MAX) {
2012 fprintf(stderr, "invalid language specifier");
2013 return -1;
2014 }
2015 strncpy(spec, str, len);
2016 spec[len] = '\0';
2017 scripting_ops = script_spec__lookup(spec);
2018 if (!scripting_ops) {
2019 fprintf(stderr, "invalid language specifier");
2020 return -1;
2021 }
2022 script++;
2023 } else {
2024 script = str;
Ben Hutchingsd1e95bb2010-10-10 16:11:02 +01002025 ext = strrchr(script, '.');
Tom Zanussi956ffd02009-11-25 01:15:46 -06002026 if (!ext) {
2027 fprintf(stderr, "invalid script extension");
2028 return -1;
2029 }
2030 scripting_ops = script_spec__lookup(++ext);
2031 if (!scripting_ops) {
2032 fprintf(stderr, "invalid script extension");
2033 return -1;
2034 }
2035 }
2036
2037 script_name = strdup(script);
2038
2039 return 0;
2040}
2041
Irina Tirdea1d037ca2012-09-11 01:15:03 +03002042static int parse_output_fields(const struct option *opt __maybe_unused,
2043 const char *arg, int unset __maybe_unused)
David Ahern745f43e2011-03-09 22:23:26 -07002044{
Arnaldo Carvalho de Melo49346e82017-04-05 11:43:41 -03002045 char *tok, *strtok_saveptr = NULL;
Sasha Levin50ca19a2012-12-20 14:11:19 -05002046 int i, imax = ARRAY_SIZE(all_output_options);
David Ahern2c9e45f72011-03-17 10:03:21 -06002047 int j;
David Ahern745f43e2011-03-09 22:23:26 -07002048 int rc = 0;
2049 char *str = strdup(arg);
David Ahern1424dc92011-03-09 22:23:28 -07002050 int type = -1;
Andi Kleen36ce5652017-06-02 08:48:10 -07002051 enum { DEFAULT, SET, ADD, REMOVE } change = DEFAULT;
David Ahern745f43e2011-03-09 22:23:26 -07002052
2053 if (!str)
2054 return -ENOMEM;
2055
David Ahern2c9e45f72011-03-17 10:03:21 -06002056 /* first word can state for which event type the user is specifying
2057 * the fields. If no type exists, the specified fields apply to all
2058 * event types found in the file minus the invalid fields for a type.
David Ahern1424dc92011-03-09 22:23:28 -07002059 */
David Ahern2c9e45f72011-03-17 10:03:21 -06002060 tok = strchr(str, ':');
2061 if (tok) {
2062 *tok = '\0';
2063 tok++;
2064 if (!strcmp(str, "hw"))
2065 type = PERF_TYPE_HARDWARE;
2066 else if (!strcmp(str, "sw"))
2067 type = PERF_TYPE_SOFTWARE;
2068 else if (!strcmp(str, "trace"))
2069 type = PERF_TYPE_TRACEPOINT;
Arun Sharma0817a6a2011-04-14 10:38:18 -07002070 else if (!strcmp(str, "raw"))
2071 type = PERF_TYPE_RAW;
Wang Nan27cfef02015-12-08 02:25:43 +00002072 else if (!strcmp(str, "break"))
2073 type = PERF_TYPE_BREAKPOINT;
Adrian Hunter14057202017-06-21 13:17:19 +03002074 else if (!strcmp(str, "synth"))
2075 type = OUTPUT_TYPE_SYNTH;
David Ahern2c9e45f72011-03-17 10:03:21 -06002076 else {
2077 fprintf(stderr, "Invalid event type in field string.\n");
Robert Richter38efb532011-11-25 11:38:40 +01002078 rc = -EINVAL;
2079 goto out;
David Ahern2c9e45f72011-03-17 10:03:21 -06002080 }
2081
2082 if (output[type].user_set)
2083 pr_warning("Overriding previous field request for %s events.\n",
2084 event_type(type));
2085
2086 output[type].fields = 0;
2087 output[type].user_set = true;
David Ahern9cbdb702011-04-06 21:54:20 -06002088 output[type].wildcard_set = false;
David Ahern2c9e45f72011-03-17 10:03:21 -06002089
2090 } else {
2091 tok = str;
2092 if (strlen(str) == 0) {
2093 fprintf(stderr,
2094 "Cannot set fields to 'none' for all event types.\n");
2095 rc = -EINVAL;
2096 goto out;
2097 }
2098
Andi Kleen36ce5652017-06-02 08:48:10 -07002099 /* Don't override defaults for +- */
2100 if (strchr(str, '+') || strchr(str, '-'))
2101 goto parse;
2102
David Ahern2c9e45f72011-03-17 10:03:21 -06002103 if (output_set_by_user())
2104 pr_warning("Overriding previous field request for all events.\n");
2105
Adrian Hunter14057202017-06-21 13:17:19 +03002106 for (j = 0; j < OUTPUT_TYPE_MAX; ++j) {
David Ahern2c9e45f72011-03-17 10:03:21 -06002107 output[j].fields = 0;
2108 output[j].user_set = true;
David Ahern9cbdb702011-04-06 21:54:20 -06002109 output[j].wildcard_set = true;
David Ahern2c9e45f72011-03-17 10:03:21 -06002110 }
David Ahern1424dc92011-03-09 22:23:28 -07002111 }
2112
Andi Kleen36ce5652017-06-02 08:48:10 -07002113parse:
Arnaldo Carvalho de Melo49346e82017-04-05 11:43:41 -03002114 for (tok = strtok_r(tok, ",", &strtok_saveptr); tok; tok = strtok_r(NULL, ",", &strtok_saveptr)) {
Andi Kleen36ce5652017-06-02 08:48:10 -07002115 if (*tok == '+') {
2116 if (change == SET)
2117 goto out_badmix;
2118 change = ADD;
2119 tok++;
2120 } else if (*tok == '-') {
2121 if (change == SET)
2122 goto out_badmix;
2123 change = REMOVE;
2124 tok++;
2125 } else {
2126 if (change != SET && change != DEFAULT)
2127 goto out_badmix;
2128 change = SET;
2129 }
2130
David Ahern745f43e2011-03-09 22:23:26 -07002131 for (i = 0; i < imax; ++i) {
David Ahern2c9e45f72011-03-17 10:03:21 -06002132 if (strcmp(tok, all_output_options[i].str) == 0)
David Ahern745f43e2011-03-09 22:23:26 -07002133 break;
David Ahern745f43e2011-03-09 22:23:26 -07002134 }
Adrian Hunter400ea6d2015-04-09 18:54:05 +03002135 if (i == imax && strcmp(tok, "flags") == 0) {
Andi Kleen36ce5652017-06-02 08:48:10 -07002136 print_flags = change == REMOVE ? false : true;
Adrian Hunter400ea6d2015-04-09 18:54:05 +03002137 continue;
2138 }
David Ahern745f43e2011-03-09 22:23:26 -07002139 if (i == imax) {
David Ahern2c9e45f72011-03-17 10:03:21 -06002140 fprintf(stderr, "Invalid field requested.\n");
David Ahern745f43e2011-03-09 22:23:26 -07002141 rc = -EINVAL;
David Ahern2c9e45f72011-03-17 10:03:21 -06002142 goto out;
2143 }
2144
2145 if (type == -1) {
2146 /* add user option to all events types for
2147 * which it is valid
2148 */
Adrian Hunter14057202017-06-21 13:17:19 +03002149 for (j = 0; j < OUTPUT_TYPE_MAX; ++j) {
David Ahern2c9e45f72011-03-17 10:03:21 -06002150 if (output[j].invalid_fields & all_output_options[i].field) {
2151 pr_warning("\'%s\' not valid for %s events. Ignoring.\n",
2152 all_output_options[i].str, event_type(j));
Andi Kleen36ce5652017-06-02 08:48:10 -07002153 } else {
2154 if (change == REMOVE)
2155 output[j].fields &= ~all_output_options[i].field;
2156 else
2157 output[j].fields |= all_output_options[i].field;
2158 }
David Ahern2c9e45f72011-03-17 10:03:21 -06002159 }
2160 } else {
2161 if (output[type].invalid_fields & all_output_options[i].field) {
2162 fprintf(stderr, "\'%s\' not valid for %s events.\n",
2163 all_output_options[i].str, event_type(type));
2164
2165 rc = -EINVAL;
2166 goto out;
2167 }
2168 output[type].fields |= all_output_options[i].field;
2169 }
David Ahern2c9e45f72011-03-17 10:03:21 -06002170 }
2171
2172 if (type >= 0) {
2173 if (output[type].fields == 0) {
2174 pr_debug("No fields requested for %s type. "
2175 "Events will not be displayed.\n", event_type(type));
David Ahern745f43e2011-03-09 22:23:26 -07002176 }
David Ahern1424dc92011-03-09 22:23:28 -07002177 }
Andi Kleen36ce5652017-06-02 08:48:10 -07002178 goto out;
David Ahern745f43e2011-03-09 22:23:26 -07002179
Andi Kleen36ce5652017-06-02 08:48:10 -07002180out_badmix:
2181 fprintf(stderr, "Cannot mix +-field with overridden fields\n");
2182 rc = -EINVAL;
David Ahern2c9e45f72011-03-17 10:03:21 -06002183out:
David Ahern745f43e2011-03-09 22:23:26 -07002184 free(str);
2185 return rc;
2186}
2187
Shawn Bohrer008f29d2010-11-21 10:09:39 -06002188/* Helper function for filesystems that return a dent->d_type DT_UNKNOWN */
2189static int is_directory(const char *base_path, const struct dirent *dent)
2190{
2191 char path[PATH_MAX];
2192 struct stat st;
2193
2194 sprintf(path, "%s/%s", base_path, dent->d_name);
2195 if (stat(path, &st))
2196 return 0;
2197
2198 return S_ISDIR(st.st_mode);
2199}
2200
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002201#define for_each_lang(scripts_path, scripts_dir, lang_dirent) \
2202 while ((lang_dirent = readdir(scripts_dir)) != NULL) \
2203 if ((lang_dirent->d_type == DT_DIR || \
2204 (lang_dirent->d_type == DT_UNKNOWN && \
2205 is_directory(scripts_path, lang_dirent))) && \
2206 (strcmp(lang_dirent->d_name, ".")) && \
2207 (strcmp(lang_dirent->d_name, "..")))
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002208
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002209#define for_each_script(lang_path, lang_dir, script_dirent) \
2210 while ((script_dirent = readdir(lang_dir)) != NULL) \
2211 if (script_dirent->d_type != DT_DIR && \
2212 (script_dirent->d_type != DT_UNKNOWN || \
2213 !is_directory(lang_path, script_dirent)))
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002214
2215
2216#define RECORD_SUFFIX "-record"
2217#define REPORT_SUFFIX "-report"
2218
2219struct script_desc {
2220 struct list_head node;
2221 char *name;
2222 char *half_liner;
2223 char *args;
2224};
2225
Arnaldo Carvalho de Meloeccdfe22011-01-04 16:32:52 -02002226static LIST_HEAD(script_descs);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002227
2228static struct script_desc *script_desc__new(const char *name)
2229{
2230 struct script_desc *s = zalloc(sizeof(*s));
2231
Tom Zanussib5b87312010-11-10 08:16:51 -06002232 if (s != NULL && name)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002233 s->name = strdup(name);
2234
2235 return s;
2236}
2237
2238static void script_desc__delete(struct script_desc *s)
2239{
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -03002240 zfree(&s->name);
2241 zfree(&s->half_liner);
2242 zfree(&s->args);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002243 free(s);
2244}
2245
2246static void script_desc__add(struct script_desc *s)
2247{
2248 list_add_tail(&s->node, &script_descs);
2249}
2250
2251static struct script_desc *script_desc__find(const char *name)
2252{
2253 struct script_desc *s;
2254
2255 list_for_each_entry(s, &script_descs, node)
2256 if (strcasecmp(s->name, name) == 0)
2257 return s;
2258 return NULL;
2259}
2260
2261static struct script_desc *script_desc__findnew(const char *name)
2262{
2263 struct script_desc *s = script_desc__find(name);
2264
2265 if (s)
2266 return s;
2267
2268 s = script_desc__new(name);
2269 if (!s)
Dan Carpenter2ec5cab62017-07-22 10:36:10 +03002270 return NULL;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002271
2272 script_desc__add(s);
2273
2274 return s;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002275}
2276
Stephane Eranian965bb6b2010-12-03 17:52:01 +02002277static const char *ends_with(const char *str, const char *suffix)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002278{
2279 size_t suffix_len = strlen(suffix);
Stephane Eranian965bb6b2010-12-03 17:52:01 +02002280 const char *p = str;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002281
2282 if (strlen(str) > suffix_len) {
2283 p = str + strlen(str) - suffix_len;
2284 if (!strncmp(p, suffix, suffix_len))
2285 return p;
2286 }
2287
2288 return NULL;
2289}
2290
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002291static int read_script_info(struct script_desc *desc, const char *filename)
2292{
2293 char line[BUFSIZ], *p;
2294 FILE *fp;
2295
2296 fp = fopen(filename, "r");
2297 if (!fp)
2298 return -1;
2299
2300 while (fgets(line, sizeof(line), fp)) {
2301 p = ltrim(line);
2302 if (strlen(p) == 0)
2303 continue;
2304 if (*p != '#')
2305 continue;
2306 p++;
2307 if (strlen(p) && *p == '!')
2308 continue;
2309
2310 p = ltrim(p);
2311 if (strlen(p) && p[strlen(p) - 1] == '\n')
2312 p[strlen(p) - 1] = '\0';
2313
2314 if (!strncmp(p, "description:", strlen("description:"))) {
2315 p += strlen("description:");
2316 desc->half_liner = strdup(ltrim(p));
2317 continue;
2318 }
2319
2320 if (!strncmp(p, "args:", strlen("args:"))) {
2321 p += strlen("args:");
2322 desc->args = strdup(ltrim(p));
2323 continue;
2324 }
2325 }
2326
2327 fclose(fp);
2328
2329 return 0;
2330}
2331
Robert Richter38efb532011-11-25 11:38:40 +01002332static char *get_script_root(struct dirent *script_dirent, const char *suffix)
2333{
2334 char *script_root, *str;
2335
2336 script_root = strdup(script_dirent->d_name);
2337 if (!script_root)
2338 return NULL;
2339
2340 str = (char *)ends_with(script_root, suffix);
2341 if (!str) {
2342 free(script_root);
2343 return NULL;
2344 }
2345
2346 *str = '\0';
2347 return script_root;
2348}
2349
Irina Tirdea1d037ca2012-09-11 01:15:03 +03002350static int list_available_scripts(const struct option *opt __maybe_unused,
2351 const char *s __maybe_unused,
2352 int unset __maybe_unused)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002353{
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002354 struct dirent *script_dirent, *lang_dirent;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002355 char scripts_path[MAXPATHLEN];
2356 DIR *scripts_dir, *lang_dir;
2357 char script_path[MAXPATHLEN];
2358 char lang_path[MAXPATHLEN];
2359 struct script_desc *desc;
2360 char first_half[BUFSIZ];
2361 char *script_root;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002362
Josh Poimboeuf46113a52015-12-15 09:39:37 -06002363 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", get_argv_exec_path());
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002364
2365 scripts_dir = opendir(scripts_path);
He Kuang88ded4d2016-08-04 11:25:42 +00002366 if (!scripts_dir) {
2367 fprintf(stdout,
2368 "open(%s) failed.\n"
2369 "Check \"PERF_EXEC_PATH\" env to set scripts dir.\n",
2370 scripts_path);
2371 exit(-1);
2372 }
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002373
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002374 for_each_lang(scripts_path, scripts_dir, lang_dirent) {
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002375 snprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path,
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002376 lang_dirent->d_name);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002377 lang_dir = opendir(lang_path);
2378 if (!lang_dir)
2379 continue;
2380
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002381 for_each_script(lang_path, lang_dir, script_dirent) {
2382 script_root = get_script_root(script_dirent, REPORT_SUFFIX);
Robert Richter38efb532011-11-25 11:38:40 +01002383 if (script_root) {
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002384 desc = script_desc__findnew(script_root);
2385 snprintf(script_path, MAXPATHLEN, "%s/%s",
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002386 lang_path, script_dirent->d_name);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002387 read_script_info(desc, script_path);
Robert Richter38efb532011-11-25 11:38:40 +01002388 free(script_root);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002389 }
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002390 }
2391 }
2392
2393 fprintf(stdout, "List of available trace scripts:\n");
2394 list_for_each_entry(desc, &script_descs, node) {
2395 sprintf(first_half, "%s %s", desc->name,
2396 desc->args ? desc->args : "");
2397 fprintf(stdout, " %-36s %s\n", first_half,
2398 desc->half_liner ? desc->half_liner : "");
2399 }
2400
2401 exit(0);
2402}
2403
Feng Tange5f37052012-09-07 16:42:26 +08002404/*
Feng Tang49e639e2012-10-30 11:56:03 +08002405 * Some scripts specify the required events in their "xxx-record" file,
2406 * this function will check if the events in perf.data match those
2407 * mentioned in the "xxx-record".
2408 *
2409 * Fixme: All existing "xxx-record" are all in good formats "-e event ",
2410 * which is covered well now. And new parsing code should be added to
2411 * cover the future complexing formats like event groups etc.
2412 */
2413static int check_ev_match(char *dir_name, char *scriptname,
2414 struct perf_session *session)
2415{
2416 char filename[MAXPATHLEN], evname[128];
2417 char line[BUFSIZ], *p;
2418 struct perf_evsel *pos;
2419 int match, len;
2420 FILE *fp;
2421
2422 sprintf(filename, "%s/bin/%s-record", dir_name, scriptname);
2423
2424 fp = fopen(filename, "r");
2425 if (!fp)
2426 return -1;
2427
2428 while (fgets(line, sizeof(line), fp)) {
2429 p = ltrim(line);
2430 if (*p == '#')
2431 continue;
2432
2433 while (strlen(p)) {
2434 p = strstr(p, "-e");
2435 if (!p)
2436 break;
2437
2438 p += 2;
2439 p = ltrim(p);
2440 len = strcspn(p, " \t");
2441 if (!len)
2442 break;
2443
2444 snprintf(evname, len + 1, "%s", p);
2445
2446 match = 0;
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03002447 evlist__for_each_entry(session->evlist, pos) {
Feng Tang49e639e2012-10-30 11:56:03 +08002448 if (!strcmp(perf_evsel__name(pos), evname)) {
2449 match = 1;
2450 break;
2451 }
2452 }
2453
2454 if (!match) {
2455 fclose(fp);
2456 return -1;
2457 }
2458 }
2459 }
2460
2461 fclose(fp);
2462 return 0;
2463}
2464
2465/*
Feng Tange5f37052012-09-07 16:42:26 +08002466 * Return -1 if none is found, otherwise the actual scripts number.
2467 *
2468 * Currently the only user of this function is the script browser, which
2469 * will list all statically runnable scripts, select one, execute it and
2470 * show the output in a perf browser.
2471 */
2472int find_scripts(char **scripts_array, char **scripts_path_array)
2473{
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002474 struct dirent *script_dirent, *lang_dirent;
Feng Tang49e639e2012-10-30 11:56:03 +08002475 char scripts_path[MAXPATHLEN], lang_path[MAXPATHLEN];
Feng Tange5f37052012-09-07 16:42:26 +08002476 DIR *scripts_dir, *lang_dir;
Feng Tang49e639e2012-10-30 11:56:03 +08002477 struct perf_session *session;
Jiri Olsaf5fc14122013-10-15 16:27:32 +02002478 struct perf_data_file file = {
2479 .path = input_name,
2480 .mode = PERF_DATA_MODE_READ,
2481 };
Feng Tange5f37052012-09-07 16:42:26 +08002482 char *temp;
2483 int i = 0;
2484
Jiri Olsaf5fc14122013-10-15 16:27:32 +02002485 session = perf_session__new(&file, false, NULL);
Feng Tang49e639e2012-10-30 11:56:03 +08002486 if (!session)
2487 return -1;
2488
Josh Poimboeuf46113a52015-12-15 09:39:37 -06002489 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", get_argv_exec_path());
Feng Tange5f37052012-09-07 16:42:26 +08002490
2491 scripts_dir = opendir(scripts_path);
Feng Tang49e639e2012-10-30 11:56:03 +08002492 if (!scripts_dir) {
2493 perf_session__delete(session);
Feng Tange5f37052012-09-07 16:42:26 +08002494 return -1;
Feng Tang49e639e2012-10-30 11:56:03 +08002495 }
Feng Tange5f37052012-09-07 16:42:26 +08002496
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002497 for_each_lang(scripts_path, scripts_dir, lang_dirent) {
Feng Tange5f37052012-09-07 16:42:26 +08002498 snprintf(lang_path, MAXPATHLEN, "%s/%s", scripts_path,
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002499 lang_dirent->d_name);
Feng Tange5f37052012-09-07 16:42:26 +08002500#ifdef NO_LIBPERL
2501 if (strstr(lang_path, "perl"))
2502 continue;
2503#endif
2504#ifdef NO_LIBPYTHON
2505 if (strstr(lang_path, "python"))
2506 continue;
2507#endif
2508
2509 lang_dir = opendir(lang_path);
2510 if (!lang_dir)
2511 continue;
2512
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002513 for_each_script(lang_path, lang_dir, script_dirent) {
Feng Tange5f37052012-09-07 16:42:26 +08002514 /* Skip those real time scripts: xxxtop.p[yl] */
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002515 if (strstr(script_dirent->d_name, "top."))
Feng Tange5f37052012-09-07 16:42:26 +08002516 continue;
2517 sprintf(scripts_path_array[i], "%s/%s", lang_path,
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002518 script_dirent->d_name);
2519 temp = strchr(script_dirent->d_name, '.');
Feng Tange5f37052012-09-07 16:42:26 +08002520 snprintf(scripts_array[i],
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002521 (temp - script_dirent->d_name) + 1,
2522 "%s", script_dirent->d_name);
Feng Tang49e639e2012-10-30 11:56:03 +08002523
2524 if (check_ev_match(lang_path,
2525 scripts_array[i], session))
2526 continue;
2527
Feng Tange5f37052012-09-07 16:42:26 +08002528 i++;
2529 }
Feng Tang49e639e2012-10-30 11:56:03 +08002530 closedir(lang_dir);
Feng Tange5f37052012-09-07 16:42:26 +08002531 }
2532
Feng Tang49e639e2012-10-30 11:56:03 +08002533 closedir(scripts_dir);
2534 perf_session__delete(session);
Feng Tange5f37052012-09-07 16:42:26 +08002535 return i;
2536}
2537
Tom Zanussi38752942009-12-15 02:53:39 -06002538static char *get_script_path(const char *script_root, const char *suffix)
2539{
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002540 struct dirent *script_dirent, *lang_dirent;
Tom Zanussi38752942009-12-15 02:53:39 -06002541 char scripts_path[MAXPATHLEN];
2542 char script_path[MAXPATHLEN];
2543 DIR *scripts_dir, *lang_dir;
2544 char lang_path[MAXPATHLEN];
Robert Richter38efb532011-11-25 11:38:40 +01002545 char *__script_root;
Tom Zanussi38752942009-12-15 02:53:39 -06002546
Josh Poimboeuf46113a52015-12-15 09:39:37 -06002547 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", get_argv_exec_path());
Tom Zanussi38752942009-12-15 02:53:39 -06002548
2549 scripts_dir = opendir(scripts_path);
2550 if (!scripts_dir)
2551 return NULL;
2552
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002553 for_each_lang(scripts_path, scripts_dir, lang_dirent) {
Tom Zanussi38752942009-12-15 02:53:39 -06002554 snprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path,
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002555 lang_dirent->d_name);
Tom Zanussi38752942009-12-15 02:53:39 -06002556 lang_dir = opendir(lang_path);
2557 if (!lang_dir)
2558 continue;
2559
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002560 for_each_script(lang_path, lang_dir, script_dirent) {
2561 __script_root = get_script_root(script_dirent, suffix);
Robert Richter38efb532011-11-25 11:38:40 +01002562 if (__script_root && !strcmp(script_root, __script_root)) {
2563 free(__script_root);
Namhyung Kim946ef2a2012-01-08 02:25:25 +09002564 closedir(lang_dir);
2565 closedir(scripts_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06002566 snprintf(script_path, MAXPATHLEN, "%s/%s",
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002567 lang_path, script_dirent->d_name);
Robert Richter38efb532011-11-25 11:38:40 +01002568 return strdup(script_path);
Tom Zanussi38752942009-12-15 02:53:39 -06002569 }
2570 free(__script_root);
2571 }
Namhyung Kim946ef2a2012-01-08 02:25:25 +09002572 closedir(lang_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06002573 }
Namhyung Kim946ef2a2012-01-08 02:25:25 +09002574 closedir(scripts_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06002575
Robert Richter38efb532011-11-25 11:38:40 +01002576 return NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06002577}
2578
Tom Zanussib5b87312010-11-10 08:16:51 -06002579static bool is_top_script(const char *script_path)
2580{
Stephane Eranian965bb6b2010-12-03 17:52:01 +02002581 return ends_with(script_path, "top") == NULL ? false : true;
Tom Zanussib5b87312010-11-10 08:16:51 -06002582}
2583
2584static int has_required_arg(char *script_path)
2585{
2586 struct script_desc *desc;
2587 int n_args = 0;
2588 char *p;
2589
2590 desc = script_desc__new(NULL);
2591
2592 if (read_script_info(desc, script_path))
2593 goto out;
2594
2595 if (!desc->args)
2596 goto out;
2597
2598 for (p = desc->args; *p; p++)
2599 if (*p == '<')
2600 n_args++;
2601out:
2602 script_desc__delete(desc);
2603
2604 return n_args;
2605}
2606
David Ahernd54b1a92012-08-26 12:24:46 -06002607static int have_cmd(int argc, const char **argv)
Tom Zanussi34c86ea2010-11-10 08:15:43 -06002608{
2609 char **__argv = malloc(sizeof(const char *) * argc);
2610
David Ahernd54b1a92012-08-26 12:24:46 -06002611 if (!__argv) {
2612 pr_err("malloc failed\n");
2613 return -1;
2614 }
2615
Tom Zanussi34c86ea2010-11-10 08:15:43 -06002616 memcpy(__argv, argv, sizeof(const char *) * argc);
2617 argc = parse_options(argc, (const char **)__argv, record_options,
2618 NULL, PARSE_OPT_STOP_AT_NON_OPTION);
2619 free(__argv);
2620
David Ahernd54b1a92012-08-26 12:24:46 -06002621 system_wide = (argc == 0);
2622
2623 return 0;
Tom Zanussi34c86ea2010-11-10 08:15:43 -06002624}
2625
Jiri Olsa7322d6c2015-08-13 09:17:24 +02002626static void script__setup_sample_type(struct perf_script *script)
2627{
2628 struct perf_session *session = script->session;
2629 u64 sample_type = perf_evlist__combined_sample_type(session->evlist);
2630
2631 if (symbol_conf.use_callchain || symbol_conf.cumulate_callchain) {
2632 if ((sample_type & PERF_SAMPLE_REGS_USER) &&
2633 (sample_type & PERF_SAMPLE_STACK_USER))
2634 callchain_param.record_mode = CALLCHAIN_DWARF;
2635 else if (sample_type & PERF_SAMPLE_BRANCH_STACK)
2636 callchain_param.record_mode = CALLCHAIN_LBR;
2637 else
2638 callchain_param.record_mode = CALLCHAIN_FP;
2639 }
2640}
2641
Jiri Olsae099eba2016-01-05 22:09:09 +01002642static int process_stat_round_event(struct perf_tool *tool __maybe_unused,
2643 union perf_event *event,
2644 struct perf_session *session)
2645{
2646 struct stat_round_event *round = &event->stat_round;
2647 struct perf_evsel *counter;
2648
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03002649 evlist__for_each_entry(session->evlist, counter) {
Jiri Olsae099eba2016-01-05 22:09:09 +01002650 perf_stat_process_counter(&stat_config, counter);
2651 process_stat(counter, round->time);
2652 }
2653
2654 process_stat_interval(round->time);
2655 return 0;
2656}
2657
Jiri Olsa91a2c3d2016-01-05 22:09:07 +01002658static int process_stat_config_event(struct perf_tool *tool __maybe_unused,
2659 union perf_event *event,
2660 struct perf_session *session __maybe_unused)
2661{
2662 perf_event__read_stat_config(&stat_config, &event->stat_config);
2663 return 0;
2664}
2665
Jiri Olsacfc88742016-01-05 22:09:06 +01002666static int set_maps(struct perf_script *script)
2667{
2668 struct perf_evlist *evlist = script->session->evlist;
2669
2670 if (!script->cpus || !script->threads)
2671 return 0;
2672
2673 if (WARN_ONCE(script->allocated, "stats double allocation\n"))
2674 return -EINVAL;
2675
2676 perf_evlist__set_maps(evlist, script->cpus, script->threads);
2677
2678 if (perf_evlist__alloc_stats(evlist, true))
2679 return -ENOMEM;
2680
2681 script->allocated = true;
2682 return 0;
2683}
2684
2685static
2686int process_thread_map_event(struct perf_tool *tool,
2687 union perf_event *event,
2688 struct perf_session *session __maybe_unused)
2689{
2690 struct perf_script *script = container_of(tool, struct perf_script, tool);
2691
2692 if (script->threads) {
2693 pr_warning("Extra thread map event, ignoring.\n");
2694 return 0;
2695 }
2696
2697 script->threads = thread_map__new_event(&event->thread_map);
2698 if (!script->threads)
2699 return -ENOMEM;
2700
2701 return set_maps(script);
2702}
2703
2704static
2705int process_cpu_map_event(struct perf_tool *tool __maybe_unused,
2706 union perf_event *event,
2707 struct perf_session *session __maybe_unused)
2708{
2709 struct perf_script *script = container_of(tool, struct perf_script, tool);
2710
2711 if (script->cpus) {
2712 pr_warning("Extra cpu map event, ignoring.\n");
2713 return 0;
2714 }
2715
2716 script->cpus = cpu_map__new_data(&event->cpu_map.data);
2717 if (!script->cpus)
2718 return -ENOMEM;
2719
2720 return set_maps(script);
2721}
2722
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -03002723int cmd_script(int argc, const char **argv)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002724{
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03002725 bool show_full_info = false;
Jiri Olsae90debd2013-12-09 11:02:50 +01002726 bool header = false;
2727 bool header_only = false;
Namhyung Kim6cc870f2014-08-12 15:40:33 +09002728 bool script_started = false;
Tom Zanussib5b87312010-11-10 08:16:51 -06002729 char *rec_script_path = NULL;
2730 char *rep_script_path = NULL;
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02002731 struct perf_session *session;
Adrian Hunter7a680eb2015-04-09 18:53:56 +03002732 struct itrace_synth_opts itrace_synth_opts = { .set = false, };
Tom Zanussib5b87312010-11-10 08:16:51 -06002733 char *script_path = NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06002734 const char **__argv;
Namhyung Kim6cc870f2014-08-12 15:40:33 +09002735 int i, j, err = 0;
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03002736 struct perf_script script = {
2737 .tool = {
2738 .sample = process_sample_event,
2739 .mmap = perf_event__process_mmap,
2740 .mmap2 = perf_event__process_mmap2,
2741 .comm = perf_event__process_comm,
Hari Bathinif3b36142017-03-08 02:11:43 +05302742 .namespaces = perf_event__process_namespaces,
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03002743 .exit = perf_event__process_exit,
2744 .fork = perf_event__process_fork,
Adrian Hunter7ea95722013-11-01 15:51:30 +02002745 .attr = process_attr,
Jiri Olsa91daee32016-04-07 09:11:13 +02002746 .event_update = perf_event__process_event_update,
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03002747 .tracing_data = perf_event__process_tracing_data,
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -07002748 .feature = perf_event__process_feature,
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03002749 .build_id = perf_event__process_build_id,
Adrian Hunter7a680eb2015-04-09 18:53:56 +03002750 .id_index = perf_event__process_id_index,
2751 .auxtrace_info = perf_event__process_auxtrace_info,
2752 .auxtrace = perf_event__process_auxtrace,
2753 .auxtrace_error = perf_event__process_auxtrace_error,
Jiri Olsae099eba2016-01-05 22:09:09 +01002754 .stat = perf_event__process_stat_event,
2755 .stat_round = process_stat_round_event,
Jiri Olsa91a2c3d2016-01-05 22:09:07 +01002756 .stat_config = process_stat_config_event,
Jiri Olsacfc88742016-01-05 22:09:06 +01002757 .thread_map = process_thread_map_event,
2758 .cpu_map = process_cpu_map_event,
Jiri Olsa0a8cb852014-07-06 14:18:21 +02002759 .ordered_events = true,
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03002760 .ordering_requires_timestamps = true,
2761 },
2762 };
Yunlong Song06af0f22015-04-02 21:47:16 +08002763 struct perf_data_file file = {
2764 .mode = PERF_DATA_MODE_READ,
2765 };
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03002766 const struct option options[] = {
2767 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
2768 "dump raw trace in ASCII"),
2769 OPT_INCR('v', "verbose", &verbose,
2770 "be more verbose (show symbol address, etc)"),
2771 OPT_BOOLEAN('L', "Latency", &latency_format,
2772 "show latency attributes (irqs/preemption disabled, etc)"),
2773 OPT_CALLBACK_NOOPT('l', "list", NULL, NULL, "list available scripts",
2774 list_available_scripts),
2775 OPT_CALLBACK('s', "script", NULL, "name",
2776 "script file name (lang:script name, script name, or *)",
2777 parse_scriptname),
2778 OPT_STRING('g', "gen-script", &generate_script_lang, "lang",
2779 "generate perf-script.xx script in specified language"),
2780 OPT_STRING('i', "input", &input_name, "file", "input file name"),
2781 OPT_BOOLEAN('d', "debug-mode", &debug_mode,
2782 "do various checks like samples ordering and lost events"),
Jiri Olsae90debd2013-12-09 11:02:50 +01002783 OPT_BOOLEAN(0, "header", &header, "Show data header."),
2784 OPT_BOOLEAN(0, "header-only", &header_only, "Show only data header."),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03002785 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
2786 "file", "vmlinux pathname"),
2787 OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name,
2788 "file", "kallsyms pathname"),
2789 OPT_BOOLEAN('G', "hide-call-graph", &no_callchain,
2790 "When printing symbols do not display call chain"),
He Kuanga7066702016-05-19 11:47:37 +00002791 OPT_CALLBACK(0, "symfs", NULL, "directory",
2792 "Look for files with symbols relative to this directory",
2793 symbol__config_symfs),
Yunlong Song06af0f22015-04-02 21:47:16 +08002794 OPT_CALLBACK('F', "fields", NULL, "str",
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03002795 "comma separated output fields prepend with 'type:'. "
Andi Kleen36ce5652017-06-02 08:48:10 -07002796 "+field to add and -field to remove."
Adrian Hunter14057202017-06-21 13:17:19 +03002797 "Valid types: hw,sw,trace,raw,synth. "
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03002798 "Fields: comm,tid,pid,time,cpu,event,trace,ip,sym,dso,"
Andi Kleenb1491ac2017-09-05 11:40:57 -07002799 "addr,symoff,period,iregs,uregs,brstack,brstacksym,flags,"
Kan Liang49d58f02017-08-29 13:11:11 -04002800 "bpf-output,callindent,insn,insnlen,brstackinsn,synth,phys_addr",
Andi Kleen48d02a12017-02-23 15:46:34 -08002801 parse_output_fields),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03002802 OPT_BOOLEAN('a', "all-cpus", &system_wide,
2803 "system-wide collection from all CPUs"),
2804 OPT_STRING('S', "symbols", &symbol_conf.sym_list_str, "symbol[,symbol...]",
2805 "only consider these symbols"),
David Ahern64eff7d2016-11-25 13:00:21 -07002806 OPT_STRING(0, "stop-bt", &symbol_conf.bt_stop_list_str, "symbol[,symbol...]",
2807 "Stop display of callgraph at these symbols"),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03002808 OPT_STRING('C', "cpu", &cpu_list, "cpu", "list of cpus to profile"),
2809 OPT_STRING('c', "comms", &symbol_conf.comm_list_str, "comm[,comm...]",
2810 "only display events for these comms"),
David Aherne03eaa42015-03-24 09:52:41 -06002811 OPT_STRING(0, "pid", &symbol_conf.pid_list_str, "pid[,pid...]",
2812 "only consider symbols in these pids"),
2813 OPT_STRING(0, "tid", &symbol_conf.tid_list_str, "tid[,tid...]",
2814 "only consider symbols in these tids"),
Arnaldo Carvalho de Melo6125cc82016-04-14 18:15:18 -03002815 OPT_UINTEGER(0, "max-stack", &scripting_max_stack,
2816 "Set the maximum stack depth when parsing the callchain, "
2817 "anything beyond the specified depth will be ignored. "
Arnaldo Carvalho de Melo4cb93442016-04-27 10:16:24 -03002818 "Default: kernel.perf_event_max_stack or " __stringify(PERF_MAX_STACK_DEPTH)),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03002819 OPT_BOOLEAN('I', "show-info", &show_full_info,
2820 "display extended information from perf.data file"),
2821 OPT_BOOLEAN('\0', "show-kernel-path", &symbol_conf.show_kernel_path,
2822 "Show the path of [kernel.kallsyms]"),
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002823 OPT_BOOLEAN('\0', "show-task-events", &script.show_task_events,
2824 "Show the fork/comm/exit events"),
Namhyung Kimba1ddf42013-11-26 17:54:26 +09002825 OPT_BOOLEAN('\0', "show-mmap-events", &script.show_mmap_events,
2826 "Show the mmap events"),
Adrian Hunter7c148982015-07-21 12:44:06 +03002827 OPT_BOOLEAN('\0', "show-switch-events", &script.show_switch_events,
2828 "Show context switch events (if recorded)"),
Hari Bathini96a44bb2017-03-08 02:12:06 +05302829 OPT_BOOLEAN('\0', "show-namespace-events", &script.show_namespace_events,
2830 "Show namespace events (if recorded)"),
Yannick Brosseaube3d4662017-01-13 13:25:27 -05002831 OPT_BOOLEAN('f', "force", &symbol_conf.force, "don't complain, do it"),
Andi Kleen48d02a12017-02-23 15:46:34 -08002832 OPT_INTEGER(0, "max-blocks", &max_blocks,
2833 "Maximum number of code blocks to dump with brstackinsn"),
Adrian Hunter83e19862015-09-25 16:15:36 +03002834 OPT_BOOLEAN(0, "ns", &nanosecs,
2835 "Use 9 decimal places when displaying time"),
Adrian Hunter7a680eb2015-04-09 18:53:56 +03002836 OPT_CALLBACK_OPTARG(0, "itrace", &itrace_synth_opts, NULL, "opts",
2837 "Instruction Tracing options",
2838 itrace_parse_synth_opts),
Andi Kleena9710ba2015-08-07 15:24:05 -07002839 OPT_BOOLEAN(0, "full-source-path", &srcline_full_filename,
2840 "Show full source file name path for source lines"),
Mark Drayton77e00702015-08-26 12:18:15 -07002841 OPT_BOOLEAN(0, "demangle", &symbol_conf.demangle,
2842 "Enable symbol demangling"),
2843 OPT_BOOLEAN(0, "demangle-kernel", &symbol_conf.demangle_kernel,
2844 "Enable kernel symbol demangling"),
David Aherna91f4c42016-11-29 10:15:43 -07002845 OPT_STRING(0, "time", &script.time_str, "str",
2846 "Time span of interest (start,stop)"),
Namhyung Kim325fbff2017-05-24 15:21:26 +09002847 OPT_BOOLEAN(0, "inline", &symbol_conf.inline_name,
2848 "Show inline function"),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03002849 OPT_END()
2850 };
Yunlong Song40cae2b2015-03-18 21:35:54 +08002851 const char * const script_subcommands[] = { "record", "report", NULL };
2852 const char *script_usage[] = {
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03002853 "perf script [<options>]",
2854 "perf script [<options>] record <script> [<record-options>] <command>",
2855 "perf script [<options>] report <script> [script-args]",
2856 "perf script [<options>] <script> [<record-options>] <command>",
2857 "perf script [<options>] <top-script> [script-args]",
2858 NULL
2859 };
Tom Zanussi38752942009-12-15 02:53:39 -06002860
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -03002861 perf_set_singlethreaded();
2862
Tom Zanussib5b87312010-11-10 08:16:51 -06002863 setup_scripting();
2864
Yunlong Song40cae2b2015-03-18 21:35:54 +08002865 argc = parse_options_subcommand(argc, argv, options, script_subcommands, script_usage,
Tom Zanussib5b87312010-11-10 08:16:51 -06002866 PARSE_OPT_STOP_AT_NON_OPTION);
2867
Jiri Olsaf5fc14122013-10-15 16:27:32 +02002868 file.path = input_name;
Yannick Brosseaube3d4662017-01-13 13:25:27 -05002869 file.force = symbol_conf.force;
Jiri Olsaf5fc14122013-10-15 16:27:32 +02002870
Tom Zanussib5b87312010-11-10 08:16:51 -06002871 if (argc > 1 && !strncmp(argv[0], "rec", strlen("rec"))) {
2872 rec_script_path = get_script_path(argv[1], RECORD_SUFFIX);
2873 if (!rec_script_path)
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -03002874 return cmd_record(argc, argv);
Tom Zanussi38752942009-12-15 02:53:39 -06002875 }
2876
Tom Zanussib5b87312010-11-10 08:16:51 -06002877 if (argc > 1 && !strncmp(argv[0], "rep", strlen("rep"))) {
2878 rep_script_path = get_script_path(argv[1], REPORT_SUFFIX);
2879 if (!rep_script_path) {
Tom Zanussi38752942009-12-15 02:53:39 -06002880 fprintf(stderr,
Tom Zanussib5b87312010-11-10 08:16:51 -06002881 "Please specify a valid report script"
Ingo Molnar133dc4c2010-11-16 18:45:39 +01002882 "(see 'perf script -l' for listing)\n");
Tom Zanussi38752942009-12-15 02:53:39 -06002883 return -1;
2884 }
Tom Zanussi38752942009-12-15 02:53:39 -06002885 }
2886
Adrian Hunter3c5b6452015-09-25 16:15:51 +03002887 if (itrace_synth_opts.callchain &&
2888 itrace_synth_opts.callchain_sz > scripting_max_stack)
2889 scripting_max_stack = itrace_synth_opts.callchain_sz;
2890
Ben Hutchings44e668c2010-10-10 16:10:03 +01002891 /* make sure PERF_EXEC_PATH is set for scripts */
Josh Poimboeuf46113a52015-12-15 09:39:37 -06002892 set_argv_exec_path(get_argv_exec_path());
Ben Hutchings44e668c2010-10-10 16:10:03 +01002893
Tom Zanussib5b87312010-11-10 08:16:51 -06002894 if (argc && !script_name && !rec_script_path && !rep_script_path) {
Tom Zanussia0cccc22010-04-01 23:59:25 -05002895 int live_pipe[2];
Tom Zanussib5b87312010-11-10 08:16:51 -06002896 int rep_args;
Tom Zanussia0cccc22010-04-01 23:59:25 -05002897 pid_t pid;
2898
Tom Zanussib5b87312010-11-10 08:16:51 -06002899 rec_script_path = get_script_path(argv[0], RECORD_SUFFIX);
2900 rep_script_path = get_script_path(argv[0], REPORT_SUFFIX);
2901
2902 if (!rec_script_path && !rep_script_path) {
Namhyung Kimc7118362015-10-25 00:49:27 +09002903 usage_with_options_msg(script_usage, options,
2904 "Couldn't find script `%s'\n\n See perf"
Ingo Molnar133dc4c2010-11-16 18:45:39 +01002905 " script -l for available scripts.\n", argv[0]);
Tom Zanussia0cccc22010-04-01 23:59:25 -05002906 }
2907
Tom Zanussib5b87312010-11-10 08:16:51 -06002908 if (is_top_script(argv[0])) {
2909 rep_args = argc - 1;
2910 } else {
2911 int rec_args;
2912
2913 rep_args = has_required_arg(rep_script_path);
2914 rec_args = (argc - 1) - rep_args;
2915 if (rec_args < 0) {
Namhyung Kimc7118362015-10-25 00:49:27 +09002916 usage_with_options_msg(script_usage, options,
2917 "`%s' script requires options."
Ingo Molnar133dc4c2010-11-16 18:45:39 +01002918 "\n\n See perf script -l for available "
Tom Zanussib5b87312010-11-10 08:16:51 -06002919 "scripts and options.\n", argv[0]);
Tom Zanussib5b87312010-11-10 08:16:51 -06002920 }
Tom Zanussia0cccc22010-04-01 23:59:25 -05002921 }
2922
2923 if (pipe(live_pipe) < 0) {
2924 perror("failed to create pipe");
David Ahernd54b1a92012-08-26 12:24:46 -06002925 return -1;
Tom Zanussia0cccc22010-04-01 23:59:25 -05002926 }
2927
2928 pid = fork();
2929 if (pid < 0) {
2930 perror("failed to fork");
David Ahernd54b1a92012-08-26 12:24:46 -06002931 return -1;
Tom Zanussia0cccc22010-04-01 23:59:25 -05002932 }
2933
2934 if (!pid) {
Tom Zanussib5b87312010-11-10 08:16:51 -06002935 j = 0;
2936
Tom Zanussia0cccc22010-04-01 23:59:25 -05002937 dup2(live_pipe[1], 1);
2938 close(live_pipe[0]);
2939
Robert Richter317df652011-11-25 15:05:25 +01002940 if (is_top_script(argv[0])) {
2941 system_wide = true;
2942 } else if (!system_wide) {
David Ahernd54b1a92012-08-26 12:24:46 -06002943 if (have_cmd(argc - rep_args, &argv[rep_args]) != 0) {
2944 err = -1;
2945 goto out;
2946 }
Robert Richter317df652011-11-25 15:05:25 +01002947 }
Tom Zanussib5b87312010-11-10 08:16:51 -06002948
2949 __argv = malloc((argc + 6) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06002950 if (!__argv) {
2951 pr_err("malloc failed\n");
2952 err = -ENOMEM;
2953 goto out;
2954 }
Tom Zanussie8719ad2010-11-10 07:52:32 -06002955
Tom Zanussib5b87312010-11-10 08:16:51 -06002956 __argv[j++] = "/bin/sh";
2957 __argv[j++] = rec_script_path;
2958 if (system_wide)
2959 __argv[j++] = "-a";
2960 __argv[j++] = "-q";
2961 __argv[j++] = "-o";
2962 __argv[j++] = "-";
2963 for (i = rep_args + 1; i < argc; i++)
2964 __argv[j++] = argv[i];
2965 __argv[j++] = NULL;
Tom Zanussia0cccc22010-04-01 23:59:25 -05002966
2967 execvp("/bin/sh", (char **)__argv);
Tom Zanussie8719ad2010-11-10 07:52:32 -06002968 free(__argv);
Tom Zanussia0cccc22010-04-01 23:59:25 -05002969 exit(-1);
2970 }
2971
2972 dup2(live_pipe[0], 0);
2973 close(live_pipe[1]);
2974
Tom Zanussib5b87312010-11-10 08:16:51 -06002975 __argv = malloc((argc + 4) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06002976 if (!__argv) {
2977 pr_err("malloc failed\n");
2978 err = -ENOMEM;
2979 goto out;
2980 }
2981
Tom Zanussib5b87312010-11-10 08:16:51 -06002982 j = 0;
Tom Zanussi34c86ea2010-11-10 08:15:43 -06002983 __argv[j++] = "/bin/sh";
Tom Zanussib5b87312010-11-10 08:16:51 -06002984 __argv[j++] = rep_script_path;
2985 for (i = 1; i < rep_args + 1; i++)
Tom Zanussi34c86ea2010-11-10 08:15:43 -06002986 __argv[j++] = argv[i];
Tom Zanussib5b87312010-11-10 08:16:51 -06002987 __argv[j++] = "-i";
2988 __argv[j++] = "-";
Tom Zanussi34c86ea2010-11-10 08:15:43 -06002989 __argv[j++] = NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06002990
2991 execvp("/bin/sh", (char **)__argv);
Tom Zanussie8719ad2010-11-10 07:52:32 -06002992 free(__argv);
Tom Zanussi38752942009-12-15 02:53:39 -06002993 exit(-1);
2994 }
Tom Zanussi956ffd02009-11-25 01:15:46 -06002995
Tom Zanussib5b87312010-11-10 08:16:51 -06002996 if (rec_script_path)
2997 script_path = rec_script_path;
2998 if (rep_script_path)
2999 script_path = rep_script_path;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003000
Tom Zanussib5b87312010-11-10 08:16:51 -06003001 if (script_path) {
Tom Zanussib5b87312010-11-10 08:16:51 -06003002 j = 0;
3003
Robert Richter317df652011-11-25 15:05:25 +01003004 if (!rec_script_path)
3005 system_wide = false;
David Ahernd54b1a92012-08-26 12:24:46 -06003006 else if (!system_wide) {
3007 if (have_cmd(argc - 1, &argv[1]) != 0) {
3008 err = -1;
3009 goto out;
3010 }
3011 }
Tom Zanussib5b87312010-11-10 08:16:51 -06003012
3013 __argv = malloc((argc + 2) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06003014 if (!__argv) {
3015 pr_err("malloc failed\n");
3016 err = -ENOMEM;
3017 goto out;
3018 }
3019
Tom Zanussib5b87312010-11-10 08:16:51 -06003020 __argv[j++] = "/bin/sh";
3021 __argv[j++] = script_path;
3022 if (system_wide)
3023 __argv[j++] = "-a";
3024 for (i = 2; i < argc; i++)
3025 __argv[j++] = argv[i];
3026 __argv[j++] = NULL;
3027
3028 execvp("/bin/sh", (char **)__argv);
3029 free(__argv);
3030 exit(-1);
3031 }
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02003032
Tom Zanussicf4fee52010-03-03 01:04:33 -06003033 if (!script_name)
3034 setup_pager();
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02003035
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003036 session = perf_session__new(&file, false, &script.tool);
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02003037 if (session == NULL)
Taeung Song52e028342014-09-24 10:33:37 +09003038 return -1;
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02003039
Jiri Olsae90debd2013-12-09 11:02:50 +01003040 if (header || header_only) {
David Carrillo-Cisneros114f7092017-07-17 21:25:47 -07003041 script.tool.show_feat_hdr = SHOW_FEAT_HEADER;
Jiri Olsae90debd2013-12-09 11:02:50 +01003042 perf_session__fprintf_info(session, stdout, show_full_info);
3043 if (header_only)
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003044 goto out_delete;
Jiri Olsae90debd2013-12-09 11:02:50 +01003045 }
David Carrillo-Cisneros114f7092017-07-17 21:25:47 -07003046 if (show_full_info)
3047 script.tool.show_feat_hdr = SHOW_FEAT_HEADER_FULL_INFO;
Jiri Olsae90debd2013-12-09 11:02:50 +01003048
Namhyung Kim0a7e6d12014-08-12 15:40:45 +09003049 if (symbol__init(&session->header.env) < 0)
Namhyung Kim38520dc2014-08-12 15:40:42 +09003050 goto out_delete;
3051
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003052 script.session = session;
Jiri Olsa7322d6c2015-08-13 09:17:24 +02003053 script__setup_sample_type(&script);
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003054
Adrian Huntere2167082016-06-23 16:40:58 +03003055 if (output[PERF_TYPE_HARDWARE].fields & PERF_OUTPUT_CALLINDENT)
3056 itrace_synth_opts.thread_stack = true;
3057
Adrian Hunter7a680eb2015-04-09 18:53:56 +03003058 session->itrace_synth_opts = &itrace_synth_opts;
3059
Anton Blanchard5d67be92011-07-04 21:57:50 +10003060 if (cpu_list) {
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003061 err = perf_session__cpu_bitmap(session, cpu_list, cpu_bitmap);
3062 if (err < 0)
3063 goto out_delete;
Adrian Hunter644e0842017-05-26 11:17:38 +03003064 itrace_synth_opts.cpu_bitmap = cpu_bitmap;
Anton Blanchard5d67be92011-07-04 21:57:50 +10003065 }
3066
David Ahern1424dc92011-03-09 22:23:28 -07003067 if (!no_callchain)
David Ahernc0230b22011-03-09 22:23:27 -07003068 symbol_conf.use_callchain = true;
3069 else
3070 symbol_conf.use_callchain = false;
3071
Arnaldo Carvalho de Melo9ee67422015-08-03 16:27:40 -03003072 if (session->tevent.pevent &&
3073 pevent_set_function_resolver(session->tevent.pevent,
Arnaldo Carvalho de Meloccb3a822015-07-22 16:43:37 -03003074 machine__resolve_kernel_addr,
3075 &session->machines.host) < 0) {
3076 pr_err("%s: failed to set libtraceevent function resolver\n", __func__);
Christophe JAILLETdb49bc12017-09-16 08:25:37 +02003077 err = -1;
3078 goto out_delete;
Arnaldo Carvalho de Meloccb3a822015-07-22 16:43:37 -03003079 }
3080
Tom Zanussi956ffd02009-11-25 01:15:46 -06003081 if (generate_script_lang) {
3082 struct stat perf_stat;
David Ahern745f43e2011-03-09 22:23:26 -07003083 int input;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003084
David Ahern2c9e45f72011-03-17 10:03:21 -06003085 if (output_set_by_user()) {
David Ahern745f43e2011-03-09 22:23:26 -07003086 fprintf(stderr,
3087 "custom fields not supported for generated scripts");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003088 err = -EINVAL;
3089 goto out_delete;
David Ahern745f43e2011-03-09 22:23:26 -07003090 }
3091
Jiri Olsacc9784bd2013-10-15 16:27:34 +02003092 input = open(file.path, O_RDONLY); /* input_name */
Tom Zanussi956ffd02009-11-25 01:15:46 -06003093 if (input < 0) {
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003094 err = -errno;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003095 perror("failed to open file");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003096 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003097 }
3098
3099 err = fstat(input, &perf_stat);
3100 if (err < 0) {
3101 perror("failed to stat file");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003102 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003103 }
3104
3105 if (!perf_stat.st_size) {
3106 fprintf(stderr, "zero-sized file, nothing to do!\n");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003107 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003108 }
3109
3110 scripting_ops = script_spec__lookup(generate_script_lang);
3111 if (!scripting_ops) {
3112 fprintf(stderr, "invalid language specifier");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003113 err = -ENOENT;
3114 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003115 }
3116
Jiri Olsa29f5ffd2013-12-03 14:09:23 +01003117 err = scripting_ops->generate_script(session->tevent.pevent,
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03003118 "perf-script");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003119 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003120 }
3121
3122 if (script_name) {
Tom Zanussi586bc5c2009-12-15 02:53:35 -06003123 err = scripting_ops->start_script(script_name, argc, argv);
Tom Zanussi956ffd02009-11-25 01:15:46 -06003124 if (err)
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003125 goto out_delete;
Ingo Molnar133dc4c2010-11-16 18:45:39 +01003126 pr_debug("perf script started with script %s\n\n", script_name);
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003127 script_started = true;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003128 }
3129
David Ahern9cbdb702011-04-06 21:54:20 -06003130
3131 err = perf_session__check_output_opt(session);
3132 if (err < 0)
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003133 goto out_delete;
David Ahern9cbdb702011-04-06 21:54:20 -06003134
David Aherna91f4c42016-11-29 10:15:43 -07003135 /* needs to be parsed after looking up reference time */
3136 if (perf_time__parse_str(&script.ptime, script.time_str) != 0) {
3137 pr_err("Invalid time string\n");
Christophe JAILLETdb49bc12017-09-16 08:25:37 +02003138 err = -EINVAL;
3139 goto out_delete;
David Aherna91f4c42016-11-29 10:15:43 -07003140 }
3141
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003142 err = __cmd_script(&script);
Tom Zanussi956ffd02009-11-25 01:15:46 -06003143
Adrian Hunterd445dd22014-08-15 22:08:37 +03003144 flush_scripting();
3145
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003146out_delete:
Jiri Olsacfc88742016-01-05 22:09:06 +01003147 perf_evlist__free_stats(session->evlist);
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02003148 perf_session__delete(session);
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003149
3150 if (script_started)
3151 cleanup_scripting();
Tom Zanussi956ffd02009-11-25 01:15:46 -06003152out:
3153 return err;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02003154}