blob: b33b42c009ed18bae2d813bc0ad2a1da542485cb [file] [log] [blame]
Tom Zanussi454c4072010-05-01 01:41:20 -05001/*
2 * builtin-inject.c
3 *
4 * Builtin inject command: Examine the live mode (stdin) event stream
5 * and repipe it to stdout while optionally injecting additional
6 * events into it.
7 */
8#include "builtin.h"
9
10#include "perf.h"
Andrew Vagin26a031e2012-08-07 16:56:04 +040011#include "util/color.h"
12#include "util/evlist.h"
13#include "util/evsel.h"
Tom Zanussi454c4072010-05-01 01:41:20 -050014#include "util/session.h"
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020015#include "util/tool.h"
Tom Zanussi454c4072010-05-01 01:41:20 -050016#include "util/debug.h"
Andrew Vagin54a3cf52012-08-07 16:56:05 +040017#include "util/build-id.h"
Jiri Olsaf5fc14122013-10-15 16:27:32 +020018#include "util/data.h"
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +030019#include "util/auxtrace.h"
Stephane Eranian9b07e272015-11-30 10:02:21 +010020#include "util/jit.h"
Tom Zanussi454c4072010-05-01 01:41:20 -050021
Josh Poimboeuf4b6ab942015-12-15 09:39:39 -060022#include <subcmd/parse-options.h>
Tom Zanussi454c4072010-05-01 01:41:20 -050023
Andrew Vagin26a031e2012-08-07 16:56:04 +040024#include <linux/list.h>
25
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -030026struct perf_inject {
Jiri Olsa34069122013-10-29 19:04:57 +010027 struct perf_tool tool;
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +090028 struct perf_session *session;
Jiri Olsa34069122013-10-29 19:04:57 +010029 bool build_ids;
30 bool sched_stat;
Adrian Huntercd10b282015-04-30 17:37:26 +030031 bool have_auxtrace;
Adrian Hunterf56fb982015-09-25 16:15:55 +030032 bool strip;
Stephane Eranian9b07e272015-11-30 10:02:21 +010033 bool jit_mode;
Jiri Olsa34069122013-10-29 19:04:57 +010034 const char *input_name;
35 struct perf_data_file output;
36 u64 bytes_written;
Adrian Hunter73117302015-09-25 16:15:54 +030037 u64 aux_id;
Jiri Olsa34069122013-10-29 19:04:57 +010038 struct list_head samples;
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +030039 struct itrace_synth_opts itrace_synth_opts;
Andrew Vagin26a031e2012-08-07 16:56:04 +040040};
41
42struct event_entry {
43 struct list_head node;
44 u32 tid;
45 union perf_event event[0];
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -030046};
Tom Zanussi454c4072010-05-01 01:41:20 -050047
Adrian Huntercd17a9b2015-04-21 12:21:54 +030048static int output_bytes(struct perf_inject *inject, void *buf, size_t sz)
Tom Zanussi454c4072010-05-01 01:41:20 -050049{
Jiri Olsa34069122013-10-29 19:04:57 +010050 ssize_t size;
Tom Zanussi454c4072010-05-01 01:41:20 -050051
Adrian Huntercd17a9b2015-04-21 12:21:54 +030052 size = perf_data_file__write(&inject->output, buf, sz);
Jiri Olsa34069122013-10-29 19:04:57 +010053 if (size < 0)
54 return -errno;
Tom Zanussi454c4072010-05-01 01:41:20 -050055
Jiri Olsa34069122013-10-29 19:04:57 +010056 inject->bytes_written += size;
Tom Zanussi454c4072010-05-01 01:41:20 -050057 return 0;
58}
59
Adrian Huntercd17a9b2015-04-21 12:21:54 +030060static int perf_event__repipe_synth(struct perf_tool *tool,
61 union perf_event *event)
62{
63 struct perf_inject *inject = container_of(tool, struct perf_inject,
64 tool);
65
66 return output_bytes(inject, event, event->header.size);
67}
68
Arnaldo Carvalho de Melod704ebd2015-03-03 12:37:54 -030069static int perf_event__repipe_oe_synth(struct perf_tool *tool,
70 union perf_event *event,
71 struct ordered_events *oe __maybe_unused)
72{
73 return perf_event__repipe_synth(tool, event);
74}
75
Jiri Olsae12b2022016-03-10 17:41:13 +010076#ifdef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +010077static int perf_event__drop_oe(struct perf_tool *tool __maybe_unused,
78 union perf_event *event __maybe_unused,
79 struct ordered_events *oe __maybe_unused)
80{
81 return 0;
82}
83#endif
84
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020085static int perf_event__repipe_op2_synth(struct perf_tool *tool,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -020086 union perf_event *event,
Irina Tirdea1d037ca2012-09-11 01:15:03 +030087 struct perf_session *session
88 __maybe_unused)
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -020089{
Adrian Hunter63c2c9f2013-07-04 16:20:20 +030090 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -020091}
92
Adrian Hunter47c3d102013-07-04 16:20:21 +030093static int perf_event__repipe_attr(struct perf_tool *tool,
94 union perf_event *event,
95 struct perf_evlist **pevlist)
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -020096{
Adrian Hunter89c97d92013-10-22 10:34:09 +030097 struct perf_inject *inject = container_of(tool, struct perf_inject,
98 tool);
Stephane Eranian1a1ed1b2012-05-15 13:28:11 +020099 int ret;
Adrian Hunter47c3d102013-07-04 16:20:21 +0300100
101 ret = perf_event__process_attr(tool, event, pevlist);
Stephane Eranian1a1ed1b2012-05-15 13:28:11 +0200102 if (ret)
103 return ret;
104
Jiri Olsaa261e4a2014-06-05 18:51:44 +0200105 if (!inject->output.is_pipe)
Adrian Hunter89c97d92013-10-22 10:34:09 +0300106 return 0;
107
Adrian Hunter47c3d102013-07-04 16:20:21 +0300108 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -0200109}
110
Adrian Huntere31f0d02015-04-30 17:37:27 +0300111#ifdef HAVE_AUXTRACE_SUPPORT
112
113static int copy_bytes(struct perf_inject *inject, int fd, off_t size)
114{
115 char buf[4096];
116 ssize_t ssz;
117 int ret;
118
119 while (size > 0) {
120 ssz = read(fd, buf, min(size, (off_t)sizeof(buf)));
121 if (ssz < 0)
122 return -errno;
123 ret = output_bytes(inject, buf, ssz);
124 if (ret)
125 return ret;
126 size -= ssz;
127 }
128
129 return 0;
130}
131
Adrian Huntercd17a9b2015-04-21 12:21:54 +0300132static s64 perf_event__repipe_auxtrace(struct perf_tool *tool,
133 union perf_event *event,
Arnaldo Carvalho de Melob8f8eb82016-03-22 13:09:37 -0300134 struct perf_session *session)
Adrian Huntercd17a9b2015-04-21 12:21:54 +0300135{
136 struct perf_inject *inject = container_of(tool, struct perf_inject,
137 tool);
138 int ret;
139
Adrian Huntercd10b282015-04-30 17:37:26 +0300140 inject->have_auxtrace = true;
141
Adrian Hunter99fa2982015-04-30 17:37:25 +0300142 if (!inject->output.is_pipe) {
143 off_t offset;
144
145 offset = lseek(inject->output.fd, 0, SEEK_CUR);
146 if (offset == -1)
147 return -errno;
148 ret = auxtrace_index__auxtrace_event(&session->auxtrace_index,
149 event, offset);
150 if (ret < 0)
151 return ret;
152 }
153
Adrian Huntercd17a9b2015-04-21 12:21:54 +0300154 if (perf_data_file__is_pipe(session->file) || !session->one_mmap) {
155 ret = output_bytes(inject, event, event->header.size);
156 if (ret < 0)
157 return ret;
158 ret = copy_bytes(inject, perf_data_file__fd(session->file),
159 event->auxtrace.size);
160 } else {
161 ret = output_bytes(inject, event,
162 event->header.size + event->auxtrace.size);
163 }
164 if (ret < 0)
165 return ret;
166
167 return event->auxtrace.size;
168}
169
Adrian Huntere31f0d02015-04-30 17:37:27 +0300170#else
171
172static s64
173perf_event__repipe_auxtrace(struct perf_tool *tool __maybe_unused,
174 union perf_event *event __maybe_unused,
175 struct perf_session *session __maybe_unused)
176{
177 pr_err("AUX area tracing not supported\n");
178 return -EINVAL;
179}
180
181#endif
182
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200183static int perf_event__repipe(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200184 union perf_event *event,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300185 struct perf_sample *sample __maybe_unused,
Adrian Hunter63c2c9f2013-07-04 16:20:20 +0300186 struct machine *machine __maybe_unused)
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -0200187{
Adrian Hunter63c2c9f2013-07-04 16:20:20 +0300188 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -0200189}
190
Adrian Hunterf56fb982015-09-25 16:15:55 +0300191static int perf_event__drop(struct perf_tool *tool __maybe_unused,
192 union perf_event *event __maybe_unused,
193 struct perf_sample *sample __maybe_unused,
194 struct machine *machine __maybe_unused)
195{
196 return 0;
197}
198
Adrian Hunter73117302015-09-25 16:15:54 +0300199static int perf_event__drop_aux(struct perf_tool *tool,
200 union perf_event *event __maybe_unused,
201 struct perf_sample *sample,
202 struct machine *machine __maybe_unused)
203{
204 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
205
206 if (!inject->aux_id)
207 inject->aux_id = sample->id;
208
209 return 0;
210}
211
Andrew Vagin26a031e2012-08-07 16:56:04 +0400212typedef int (*inject_handler)(struct perf_tool *tool,
213 union perf_event *event,
214 struct perf_sample *sample,
215 struct perf_evsel *evsel,
216 struct machine *machine);
217
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200218static int perf_event__repipe_sample(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200219 union perf_event *event,
Andrew Vagin26a031e2012-08-07 16:56:04 +0400220 struct perf_sample *sample,
221 struct perf_evsel *evsel,
222 struct machine *machine)
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300223{
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300224 if (evsel->handler) {
225 inject_handler f = evsel->handler;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400226 return f(tool, event, sample, evsel, machine);
227 }
228
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400229 build_id__mark_dso_hit(tool, event, sample, evsel, machine);
230
Adrian Hunter63c2c9f2013-07-04 16:20:20 +0300231 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300232}
233
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200234static int perf_event__repipe_mmap(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200235 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200236 struct perf_sample *sample,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200237 struct machine *machine)
Tom Zanussi454c4072010-05-01 01:41:20 -0500238{
239 int err;
240
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200241 err = perf_event__process_mmap(tool, event, sample, machine);
242 perf_event__repipe(tool, event, sample, machine);
Tom Zanussi454c4072010-05-01 01:41:20 -0500243
244 return err;
245}
246
Jiri Olsae12b2022016-03-10 17:41:13 +0100247#ifdef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +0100248static int perf_event__jit_repipe_mmap(struct perf_tool *tool,
249 union perf_event *event,
250 struct perf_sample *sample,
251 struct machine *machine)
252{
253 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
254 u64 n = 0;
Adrian Hunter570735b2016-03-07 16:44:40 -0300255 int ret;
Stephane Eranian9b07e272015-11-30 10:02:21 +0100256
257 /*
258 * if jit marker, then inject jit mmaps and generate ELF images
259 */
Adrian Hunter570735b2016-03-07 16:44:40 -0300260 ret = jit_process(inject->session, &inject->output, machine,
261 event->mmap.filename, sample->pid, &n);
262 if (ret < 0)
263 return ret;
264 if (ret) {
Stephane Eranian9b07e272015-11-30 10:02:21 +0100265 inject->bytes_written += n;
266 return 0;
267 }
268 return perf_event__repipe_mmap(tool, event, sample, machine);
269}
270#endif
271
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200272static int perf_event__repipe_mmap2(struct perf_tool *tool,
273 union perf_event *event,
274 struct perf_sample *sample,
275 struct machine *machine)
276{
277 int err;
278
279 err = perf_event__process_mmap2(tool, event, sample, machine);
280 perf_event__repipe(tool, event, sample, machine);
281
282 return err;
283}
284
Jiri Olsae12b2022016-03-10 17:41:13 +0100285#ifdef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +0100286static int perf_event__jit_repipe_mmap2(struct perf_tool *tool,
287 union perf_event *event,
288 struct perf_sample *sample,
289 struct machine *machine)
290{
291 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
292 u64 n = 0;
Adrian Hunter570735b2016-03-07 16:44:40 -0300293 int ret;
Stephane Eranian9b07e272015-11-30 10:02:21 +0100294
295 /*
296 * if jit marker, then inject jit mmaps and generate ELF images
297 */
Adrian Hunter570735b2016-03-07 16:44:40 -0300298 ret = jit_process(inject->session, &inject->output, machine,
299 event->mmap2.filename, sample->pid, &n);
300 if (ret < 0)
301 return ret;
302 if (ret) {
Stephane Eranian9b07e272015-11-30 10:02:21 +0100303 inject->bytes_written += n;
304 return 0;
305 }
306 return perf_event__repipe_mmap2(tool, event, sample, machine);
307}
308#endif
309
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300310static int perf_event__repipe_fork(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200311 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200312 struct perf_sample *sample,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200313 struct machine *machine)
Tom Zanussi454c4072010-05-01 01:41:20 -0500314{
315 int err;
316
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300317 err = perf_event__process_fork(tool, event, sample, machine);
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200318 perf_event__repipe(tool, event, sample, machine);
Tom Zanussi454c4072010-05-01 01:41:20 -0500319
320 return err;
321}
322
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300323static int perf_event__repipe_comm(struct perf_tool *tool,
324 union perf_event *event,
325 struct perf_sample *sample,
326 struct machine *machine)
327{
328 int err;
329
330 err = perf_event__process_comm(tool, event, sample, machine);
331 perf_event__repipe(tool, event, sample, machine);
332
333 return err;
334}
335
336static int perf_event__repipe_exit(struct perf_tool *tool,
337 union perf_event *event,
338 struct perf_sample *sample,
339 struct machine *machine)
340{
341 int err;
342
343 err = perf_event__process_exit(tool, event, sample, machine);
344 perf_event__repipe(tool, event, sample, machine);
345
346 return err;
347}
348
Adrian Hunter47c3d102013-07-04 16:20:21 +0300349static int perf_event__repipe_tracing_data(struct perf_tool *tool,
350 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200351 struct perf_session *session)
Tom Zanussi454c4072010-05-01 01:41:20 -0500352{
353 int err;
354
Adrian Hunter47c3d102013-07-04 16:20:21 +0300355 perf_event__repipe_synth(tool, event);
356 err = perf_event__process_tracing_data(tool, event, session);
Tom Zanussi454c4072010-05-01 01:41:20 -0500357
358 return err;
359}
360
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300361static int perf_event__repipe_id_index(struct perf_tool *tool,
362 union perf_event *event,
363 struct perf_session *session)
364{
365 int err;
366
367 perf_event__repipe_synth(tool, event);
368 err = perf_event__process_id_index(tool, event, session);
369
370 return err;
371}
372
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300373static int dso__read_build_id(struct dso *dso)
Tom Zanussi454c4072010-05-01 01:41:20 -0500374{
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300375 if (dso->has_build_id)
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300376 return 0;
Tom Zanussi454c4072010-05-01 01:41:20 -0500377
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300378 if (filename__read_build_id(dso->long_name, dso->build_id,
379 sizeof(dso->build_id)) > 0) {
380 dso->has_build_id = true;
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300381 return 0;
Tom Zanussi454c4072010-05-01 01:41:20 -0500382 }
383
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300384 return -1;
385}
Tom Zanussi454c4072010-05-01 01:41:20 -0500386
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300387static int dso__inject_build_id(struct dso *dso, struct perf_tool *tool,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200388 struct machine *machine)
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300389{
390 u16 misc = PERF_RECORD_MISC_USER;
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300391 int err;
Tom Zanussi454c4072010-05-01 01:41:20 -0500392
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300393 if (dso__read_build_id(dso) < 0) {
394 pr_debug("no build_id found for %s\n", dso->long_name);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300395 return -1;
396 }
Tom Zanussi454c4072010-05-01 01:41:20 -0500397
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300398 if (dso->kernel)
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300399 misc = PERF_RECORD_MISC_KERNEL;
400
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300401 err = perf_event__synthesize_build_id(tool, dso, misc, perf_event__repipe,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200402 machine);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300403 if (err) {
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300404 pr_err("Can't synthesize build_id event for %s\n", dso->long_name);
Tom Zanussi454c4072010-05-01 01:41:20 -0500405 return -1;
406 }
407
408 return 0;
409}
410
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200411static int perf_event__inject_buildid(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200412 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200413 struct perf_sample *sample,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300414 struct perf_evsel *evsel __maybe_unused,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200415 struct machine *machine)
Tom Zanussi454c4072010-05-01 01:41:20 -0500416{
417 struct addr_location al;
418 struct thread *thread;
419 u8 cpumode;
Tom Zanussi454c4072010-05-01 01:41:20 -0500420
421 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
422
Namhyung Kim13ce34d2014-05-12 09:56:42 +0900423 thread = machine__findnew_thread(machine, sample->pid, sample->tid);
Tom Zanussi454c4072010-05-01 01:41:20 -0500424 if (thread == NULL) {
425 pr_err("problem processing %d event, skipping it.\n",
426 event->header.type);
Tom Zanussi454c4072010-05-01 01:41:20 -0500427 goto repipe;
428 }
429
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -0300430 thread__find_addr_map(thread, cpumode, MAP__FUNCTION, sample->ip, &al);
Tom Zanussi454c4072010-05-01 01:41:20 -0500431
432 if (al.map != NULL) {
433 if (!al.map->dso->hit) {
434 al.map->dso->hit = 1;
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300435 if (map__load(al.map, NULL) >= 0) {
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200436 dso__inject_build_id(al.map->dso, tool, machine);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300437 /*
438 * If this fails, too bad, let the other side
439 * account this as unresolved.
440 */
Namhyung Kim393be2e2012-08-06 13:41:21 +0900441 } else {
Ingo Molnar89fe8082013-09-30 12:07:11 +0200442#ifdef HAVE_LIBELF_SUPPORT
Tom Zanussi454c4072010-05-01 01:41:20 -0500443 pr_warning("no symbols found in %s, maybe "
444 "install a debug package?\n",
445 al.map->dso->long_name);
Namhyung Kim393be2e2012-08-06 13:41:21 +0900446#endif
447 }
Tom Zanussi454c4072010-05-01 01:41:20 -0500448 }
449 }
450
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300451 thread__put(thread);
Tom Zanussi454c4072010-05-01 01:41:20 -0500452repipe:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200453 perf_event__repipe(tool, event, sample, machine);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300454 return 0;
Tom Zanussi454c4072010-05-01 01:41:20 -0500455}
456
Andrew Vagin26a031e2012-08-07 16:56:04 +0400457static int perf_inject__sched_process_exit(struct perf_tool *tool,
458 union perf_event *event __maybe_unused,
459 struct perf_sample *sample,
460 struct perf_evsel *evsel __maybe_unused,
461 struct machine *machine __maybe_unused)
462{
463 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
464 struct event_entry *ent;
465
466 list_for_each_entry(ent, &inject->samples, node) {
467 if (sample->tid == ent->tid) {
468 list_del_init(&ent->node);
469 free(ent);
470 break;
471 }
472 }
473
474 return 0;
475}
476
477static int perf_inject__sched_switch(struct perf_tool *tool,
478 union perf_event *event,
479 struct perf_sample *sample,
480 struct perf_evsel *evsel,
481 struct machine *machine)
482{
483 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
484 struct event_entry *ent;
485
486 perf_inject__sched_process_exit(tool, event, sample, evsel, machine);
487
488 ent = malloc(event->header.size + sizeof(struct event_entry));
489 if (ent == NULL) {
490 color_fprintf(stderr, PERF_COLOR_RED,
491 "Not enough memory to process sched switch event!");
492 return -1;
493 }
494
495 ent->tid = sample->tid;
496 memcpy(&ent->event, event, event->header.size);
497 list_add(&ent->node, &inject->samples);
498 return 0;
499}
500
501static int perf_inject__sched_stat(struct perf_tool *tool,
502 union perf_event *event __maybe_unused,
503 struct perf_sample *sample,
504 struct perf_evsel *evsel,
505 struct machine *machine)
506{
507 struct event_entry *ent;
508 union perf_event *event_sw;
509 struct perf_sample sample_sw;
510 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
511 u32 pid = perf_evsel__intval(evsel, sample, "pid");
512
513 list_for_each_entry(ent, &inject->samples, node) {
514 if (pid == ent->tid)
515 goto found;
516 }
517
518 return 0;
519found:
520 event_sw = &ent->event[0];
521 perf_evsel__parse_sample(evsel, event_sw, &sample_sw);
522
523 sample_sw.period = sample->period;
524 sample_sw.time = sample->time;
525 perf_event__synthesize_sample(event_sw, evsel->attr.sample_type,
Adrian Hunterd03f2172013-08-27 11:23:11 +0300526 evsel->attr.read_format, &sample_sw,
527 false);
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400528 build_id__mark_dso_hit(tool, event_sw, &sample_sw, evsel, machine);
Andrew Vagin26a031e2012-08-07 16:56:04 +0400529 return perf_event__repipe(tool, event_sw, &sample_sw, machine);
530}
531
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300532static void sig_handler(int sig __maybe_unused)
Tom Zanussi454c4072010-05-01 01:41:20 -0500533{
534 session_done = 1;
535}
536
Andrew Vagin26a031e2012-08-07 16:56:04 +0400537static int perf_evsel__check_stype(struct perf_evsel *evsel,
538 u64 sample_type, const char *sample_msg)
539{
540 struct perf_event_attr *attr = &evsel->attr;
541 const char *name = perf_evsel__name(evsel);
542
543 if (!(attr->sample_type & sample_type)) {
544 pr_err("Samples for %s event do not have %s attribute set.",
545 name, sample_msg);
546 return -EINVAL;
547 }
548
549 return 0;
550}
551
Adrian Hunterf56fb982015-09-25 16:15:55 +0300552static int drop_sample(struct perf_tool *tool __maybe_unused,
553 union perf_event *event __maybe_unused,
554 struct perf_sample *sample __maybe_unused,
555 struct perf_evsel *evsel __maybe_unused,
556 struct machine *machine __maybe_unused)
557{
558 return 0;
559}
560
561static void strip_init(struct perf_inject *inject)
562{
563 struct perf_evlist *evlist = inject->session->evlist;
564 struct perf_evsel *evsel;
565
566 inject->tool.context_switch = perf_event__drop;
567
568 evlist__for_each(evlist, evsel)
569 evsel->handler = drop_sample;
570}
571
572static bool has_tracking(struct perf_evsel *evsel)
573{
574 return evsel->attr.mmap || evsel->attr.mmap2 || evsel->attr.comm ||
575 evsel->attr.task;
576}
577
578#define COMPAT_MASK (PERF_SAMPLE_ID | PERF_SAMPLE_TID | PERF_SAMPLE_TIME | \
579 PERF_SAMPLE_ID | PERF_SAMPLE_CPU | PERF_SAMPLE_IDENTIFIER)
580
581/*
582 * In order that the perf.data file is parsable, tracking events like MMAP need
583 * their selected event to exist, except if there is only 1 selected event left
584 * and it has a compatible sample type.
585 */
586static bool ok_to_remove(struct perf_evlist *evlist,
587 struct perf_evsel *evsel_to_remove)
588{
589 struct perf_evsel *evsel;
590 int cnt = 0;
591 bool ok = false;
592
593 if (!has_tracking(evsel_to_remove))
594 return true;
595
596 evlist__for_each(evlist, evsel) {
597 if (evsel->handler != drop_sample) {
598 cnt += 1;
599 if ((evsel->attr.sample_type & COMPAT_MASK) ==
600 (evsel_to_remove->attr.sample_type & COMPAT_MASK))
601 ok = true;
602 }
603 }
604
605 return ok && cnt == 1;
606}
607
608static void strip_fini(struct perf_inject *inject)
609{
610 struct perf_evlist *evlist = inject->session->evlist;
611 struct perf_evsel *evsel, *tmp;
612
613 /* Remove non-synthesized evsels if possible */
614 evlist__for_each_safe(evlist, tmp, evsel) {
615 if (evsel->handler == drop_sample &&
616 ok_to_remove(evlist, evsel)) {
617 pr_debug("Deleting %s\n", perf_evsel__name(evsel));
618 perf_evlist__remove(evlist, evsel);
619 perf_evsel__delete(evsel);
620 }
621 }
622}
623
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300624static int __cmd_inject(struct perf_inject *inject)
Tom Zanussi454c4072010-05-01 01:41:20 -0500625{
Tom Zanussi454c4072010-05-01 01:41:20 -0500626 int ret = -EINVAL;
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900627 struct perf_session *session = inject->session;
Jiri Olsa34069122013-10-29 19:04:57 +0100628 struct perf_data_file *file_out = &inject->output;
Namhyung Kim42aa2762015-01-29 17:06:48 +0900629 int fd = perf_data_file__fd(file_out);
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300630 u64 output_data_offset;
Tom Zanussi454c4072010-05-01 01:41:20 -0500631
632 signal(SIGINT, sig_handler);
633
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300634 if (inject->build_ids || inject->sched_stat ||
635 inject->itrace_synth_opts.set) {
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300636 inject->tool.mmap = perf_event__repipe_mmap;
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200637 inject->tool.mmap2 = perf_event__repipe_mmap2;
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300638 inject->tool.fork = perf_event__repipe_fork;
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300639 inject->tool.tracing_data = perf_event__repipe_tracing_data;
Tom Zanussi454c4072010-05-01 01:41:20 -0500640 }
641
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300642 output_data_offset = session->header.data_offset;
643
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400644 if (inject->build_ids) {
645 inject->tool.sample = perf_event__inject_buildid;
646 } else if (inject->sched_stat) {
Andrew Vagin26a031e2012-08-07 16:56:04 +0400647 struct perf_evsel *evsel;
648
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300649 evlist__for_each(session->evlist, evsel) {
Andrew Vagin26a031e2012-08-07 16:56:04 +0400650 const char *name = perf_evsel__name(evsel);
651
652 if (!strcmp(name, "sched:sched_switch")) {
653 if (perf_evsel__check_stype(evsel, PERF_SAMPLE_TID, "TID"))
654 return -EINVAL;
655
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300656 evsel->handler = perf_inject__sched_switch;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400657 } else if (!strcmp(name, "sched:sched_process_exit"))
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300658 evsel->handler = perf_inject__sched_process_exit;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400659 else if (!strncmp(name, "sched:sched_stat_", 17))
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300660 evsel->handler = perf_inject__sched_stat;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400661 }
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300662 } else if (inject->itrace_synth_opts.set) {
663 session->itrace_synth_opts = &inject->itrace_synth_opts;
664 inject->itrace_synth_opts.inject = true;
665 inject->tool.comm = perf_event__repipe_comm;
666 inject->tool.exit = perf_event__repipe_exit;
667 inject->tool.id_index = perf_event__repipe_id_index;
668 inject->tool.auxtrace_info = perf_event__process_auxtrace_info;
669 inject->tool.auxtrace = perf_event__process_auxtrace;
Adrian Hunter73117302015-09-25 16:15:54 +0300670 inject->tool.aux = perf_event__drop_aux;
671 inject->tool.itrace_start = perf_event__drop_aux,
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300672 inject->tool.ordered_events = true;
673 inject->tool.ordering_requires_timestamps = true;
674 /* Allow space in the header for new attributes */
675 output_data_offset = 4096;
Adrian Hunterf56fb982015-09-25 16:15:55 +0300676 if (inject->strip)
677 strip_init(inject);
Andrew Vagin26a031e2012-08-07 16:56:04 +0400678 }
679
Adrian Hunter99fa2982015-04-30 17:37:25 +0300680 if (!inject->itrace_synth_opts.set)
681 auxtrace_index__free(&session->auxtrace_index);
682
Jiri Olsa34069122013-10-29 19:04:57 +0100683 if (!file_out->is_pipe)
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300684 lseek(fd, output_data_offset, SEEK_SET);
Andrew Vagine558a5b2012-08-07 16:56:02 +0400685
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -0300686 ret = perf_session__process_events(session);
Tom Zanussi454c4072010-05-01 01:41:20 -0500687
Jiri Olsa34069122013-10-29 19:04:57 +0100688 if (!file_out->is_pipe) {
Adrian Hunter640dad42016-03-07 16:44:38 -0300689 if (inject->build_ids)
Adrian Huntere38b43c2014-07-14 13:02:34 +0300690 perf_header__set_feat(&session->header,
691 HEADER_BUILD_ID);
Adrian Hunter640dad42016-03-07 16:44:38 -0300692 /*
693 * Keep all buildids when there is unprocessed AUX data because
694 * it is not known which ones the AUX trace hits.
695 */
696 if (perf_header__has_feat(&session->header, HEADER_BUILD_ID) &&
697 inject->have_auxtrace && !inject->itrace_synth_opts.set)
698 dsos__hit_all(session);
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300699 /*
700 * The AUX areas have been removed and replaced with
Adrian Hunter73117302015-09-25 16:15:54 +0300701 * synthesized hardware events, so clear the feature flag and
702 * remove the evsel.
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300703 */
Adrian Hunter051a01b2015-09-25 16:15:43 +0300704 if (inject->itrace_synth_opts.set) {
Adrian Hunter73117302015-09-25 16:15:54 +0300705 struct perf_evsel *evsel;
706
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300707 perf_header__clear_feat(&session->header,
708 HEADER_AUXTRACE);
Adrian Hunter051a01b2015-09-25 16:15:43 +0300709 if (inject->itrace_synth_opts.last_branch)
710 perf_header__set_feat(&session->header,
711 HEADER_BRANCH_STACK);
Adrian Hunter73117302015-09-25 16:15:54 +0300712 evsel = perf_evlist__id2evsel_strict(session->evlist,
713 inject->aux_id);
714 if (evsel) {
715 pr_debug("Deleting %s\n",
716 perf_evsel__name(evsel));
717 perf_evlist__remove(session->evlist, evsel);
718 perf_evsel__delete(evsel);
719 }
Adrian Hunterf56fb982015-09-25 16:15:55 +0300720 if (inject->strip)
721 strip_fini(inject);
Adrian Hunter051a01b2015-09-25 16:15:43 +0300722 }
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300723 session->header.data_offset = output_data_offset;
Andrew Vagine558a5b2012-08-07 16:56:02 +0400724 session->header.data_size = inject->bytes_written;
Namhyung Kim42aa2762015-01-29 17:06:48 +0900725 perf_session__write_header(session, session->evlist, fd, true);
Andrew Vagine558a5b2012-08-07 16:56:02 +0400726 }
727
Tom Zanussi454c4072010-05-01 01:41:20 -0500728 return ret;
729}
730
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300731int cmd_inject(int argc, const char **argv, const char *prefix __maybe_unused)
Tom Zanussi454c4072010-05-01 01:41:20 -0500732{
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300733 struct perf_inject inject = {
734 .tool = {
735 .sample = perf_event__repipe_sample,
736 .mmap = perf_event__repipe,
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200737 .mmap2 = perf_event__repipe,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300738 .comm = perf_event__repipe,
739 .fork = perf_event__repipe,
740 .exit = perf_event__repipe,
741 .lost = perf_event__repipe,
Adrian Hunterd8145b32015-11-13 11:48:32 +0200742 .lost_samples = perf_event__repipe,
Adrian Hunter4a96f7a2015-04-30 17:37:29 +0300743 .aux = perf_event__repipe,
Adrian Hunter0ad21f62015-04-30 17:37:30 +0300744 .itrace_start = perf_event__repipe,
Adrian Hunter02860392015-07-21 12:44:03 +0300745 .context_switch = perf_event__repipe,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300746 .read = perf_event__repipe_sample,
747 .throttle = perf_event__repipe,
748 .unthrottle = perf_event__repipe,
749 .attr = perf_event__repipe_attr,
Adrian Hunter47c3d102013-07-04 16:20:21 +0300750 .tracing_data = perf_event__repipe_op2_synth,
Adrian Huntercd17a9b2015-04-21 12:21:54 +0300751 .auxtrace_info = perf_event__repipe_op2_synth,
752 .auxtrace = perf_event__repipe_auxtrace,
753 .auxtrace_error = perf_event__repipe_op2_synth,
Arnaldo Carvalho de Melod704ebd2015-03-03 12:37:54 -0300754 .finished_round = perf_event__repipe_oe_synth,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300755 .build_id = perf_event__repipe_op2_synth,
Adrian Hunter3c659ee2014-10-27 15:49:22 +0200756 .id_index = perf_event__repipe_op2_synth,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300757 },
Andrew Vagine558a5b2012-08-07 16:56:02 +0400758 .input_name = "-",
Andrew Vagin26a031e2012-08-07 16:56:04 +0400759 .samples = LIST_HEAD_INIT(inject.samples),
Jiri Olsa34069122013-10-29 19:04:57 +0100760 .output = {
761 .path = "-",
762 .mode = PERF_DATA_MODE_WRITE,
763 },
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300764 };
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900765 struct perf_data_file file = {
766 .mode = PERF_DATA_MODE_READ,
767 };
768 int ret;
769
Stephane Eranian9b07e272015-11-30 10:02:21 +0100770 struct option options[] = {
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300771 OPT_BOOLEAN('b', "build-ids", &inject.build_ids,
772 "Inject build-ids into the output stream"),
Andrew Vagine558a5b2012-08-07 16:56:02 +0400773 OPT_STRING('i', "input", &inject.input_name, "file",
774 "input file name"),
Jiri Olsa34069122013-10-29 19:04:57 +0100775 OPT_STRING('o', "output", &inject.output.path, "file",
Andrew Vagine558a5b2012-08-07 16:56:02 +0400776 "output file name"),
Andrew Vagin26a031e2012-08-07 16:56:04 +0400777 OPT_BOOLEAN('s', "sched-stat", &inject.sched_stat,
778 "Merge sched-stat and sched-switch for getting events "
779 "where and how long tasks slept"),
Jiri Olsae12b2022016-03-10 17:41:13 +0100780#ifdef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +0100781 OPT_BOOLEAN('j', "jit", &inject.jit_mode, "merge jitdump files into perf.data file"),
Jiri Olsae12b2022016-03-10 17:41:13 +0100782#endif
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300783 OPT_INCR('v', "verbose", &verbose,
784 "be more verbose (show build ids, etc)"),
Adrian Huntera7a2b8b2014-07-22 16:17:38 +0300785 OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name, "file",
786 "kallsyms pathname"),
Yunlong Songccaa4742015-04-02 21:47:11 +0800787 OPT_BOOLEAN('f', "force", &file.force, "don't complain, do it"),
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300788 OPT_CALLBACK_OPTARG(0, "itrace", &inject.itrace_synth_opts,
789 NULL, "opts", "Instruction Tracing options",
790 itrace_parse_synth_opts),
Adrian Hunterf56fb982015-09-25 16:15:55 +0300791 OPT_BOOLEAN(0, "strip", &inject.strip,
792 "strip non-synthesized events (use with --itrace)"),
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300793 OPT_END()
794 };
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300795 const char * const inject_usage[] = {
796 "perf inject [<options>]",
797 NULL
798 };
Jiri Olsae12b2022016-03-10 17:41:13 +0100799#ifndef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +0100800 set_option_nobuild(options, 'j', "jit", "NO_LIBELF=1", true);
801#endif
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300802 argc = parse_options(argc, argv, options, inject_usage, 0);
Tom Zanussi454c4072010-05-01 01:41:20 -0500803
804 /*
805 * Any (unrecognized) arguments left?
806 */
807 if (argc)
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300808 usage_with_options(inject_usage, options);
Tom Zanussi454c4072010-05-01 01:41:20 -0500809
Adrian Hunterf56fb982015-09-25 16:15:55 +0300810 if (inject.strip && !inject.itrace_synth_opts.set) {
811 pr_err("--strip option requires --itrace option\n");
812 return -1;
813 }
814
Jiri Olsa34069122013-10-29 19:04:57 +0100815 if (perf_data_file__open(&inject.output)) {
816 perror("failed to create output file");
817 return -1;
Andrew Vagine558a5b2012-08-07 16:56:02 +0400818 }
819
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -0300820 inject.tool.ordered_events = inject.sched_stat;
821
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900822 file.path = inject.input_name;
823 inject.session = perf_session__new(&file, true, &inject.tool);
824 if (inject.session == NULL)
Taeung Song52e028342014-09-24 10:33:37 +0900825 return -1;
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900826
Arnaldo Carvalho de Melo921f3fa2016-01-22 18:41:00 -0300827 if (inject.build_ids) {
828 /*
829 * to make sure the mmap records are ordered correctly
830 * and so that the correct especially due to jitted code
831 * mmaps. We cannot generate the buildid hit list and
832 * inject the jit mmaps at the same time for now.
833 */
834 inject.tool.ordered_events = true;
835 inject.tool.ordering_requires_timestamps = true;
836 }
Jiri Olsae12b2022016-03-10 17:41:13 +0100837#ifdef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +0100838 if (inject.jit_mode) {
Stephane Eranian9b07e272015-11-30 10:02:21 +0100839 inject.tool.mmap2 = perf_event__jit_repipe_mmap2;
840 inject.tool.mmap = perf_event__jit_repipe_mmap;
841 inject.tool.ordered_events = true;
842 inject.tool.ordering_requires_timestamps = true;
843 /*
844 * JIT MMAP injection injects all MMAP events in one go, so it
845 * does not obey finished_round semantics.
846 */
847 inject.tool.finished_round = perf_event__drop_oe;
848 }
849#endif
Taeung Song9fedfb02015-06-30 17:15:20 +0900850 ret = symbol__init(&inject.session->header.env);
851 if (ret < 0)
852 goto out_delete;
Tom Zanussi454c4072010-05-01 01:41:20 -0500853
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900854 ret = __cmd_inject(&inject);
855
Taeung Song9fedfb02015-06-30 17:15:20 +0900856out_delete:
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900857 perf_session__delete(inject.session);
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900858 return ret;
Tom Zanussi454c4072010-05-01 01:41:20 -0500859}