blob: 2512d71ca386954101f2f7ba37ca1daf10efe356 [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 Olsaf5fc1412013-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
Stephane Eranian9b07e272015-11-30 10:02:21 +010076#ifdef HAVE_LIBELF_SUPPORT
77static 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,
134 struct perf_session *session
135 __maybe_unused)
136{
137 struct perf_inject *inject = container_of(tool, struct perf_inject,
138 tool);
139 int ret;
140
Adrian Huntercd10b282015-04-30 17:37:26 +0300141 inject->have_auxtrace = true;
142
Adrian Hunter99fa2982015-04-30 17:37:25 +0300143 if (!inject->output.is_pipe) {
144 off_t offset;
145
146 offset = lseek(inject->output.fd, 0, SEEK_CUR);
147 if (offset == -1)
148 return -errno;
149 ret = auxtrace_index__auxtrace_event(&session->auxtrace_index,
150 event, offset);
151 if (ret < 0)
152 return ret;
153 }
154
Adrian Huntercd17a9b2015-04-21 12:21:54 +0300155 if (perf_data_file__is_pipe(session->file) || !session->one_mmap) {
156 ret = output_bytes(inject, event, event->header.size);
157 if (ret < 0)
158 return ret;
159 ret = copy_bytes(inject, perf_data_file__fd(session->file),
160 event->auxtrace.size);
161 } else {
162 ret = output_bytes(inject, event,
163 event->header.size + event->auxtrace.size);
164 }
165 if (ret < 0)
166 return ret;
167
168 return event->auxtrace.size;
169}
170
Adrian Huntere31f0d02015-04-30 17:37:27 +0300171#else
172
173static s64
174perf_event__repipe_auxtrace(struct perf_tool *tool __maybe_unused,
175 union perf_event *event __maybe_unused,
176 struct perf_session *session __maybe_unused)
177{
178 pr_err("AUX area tracing not supported\n");
179 return -EINVAL;
180}
181
182#endif
183
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200184static int perf_event__repipe(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200185 union perf_event *event,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300186 struct perf_sample *sample __maybe_unused,
Adrian Hunter63c2c9f2013-07-04 16:20:20 +0300187 struct machine *machine __maybe_unused)
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -0200188{
Adrian Hunter63c2c9f2013-07-04 16:20:20 +0300189 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -0200190}
191
Adrian Hunterf56fb982015-09-25 16:15:55 +0300192static int perf_event__drop(struct perf_tool *tool __maybe_unused,
193 union perf_event *event __maybe_unused,
194 struct perf_sample *sample __maybe_unused,
195 struct machine *machine __maybe_unused)
196{
197 return 0;
198}
199
Adrian Hunter73117302015-09-25 16:15:54 +0300200static int perf_event__drop_aux(struct perf_tool *tool,
201 union perf_event *event __maybe_unused,
202 struct perf_sample *sample,
203 struct machine *machine __maybe_unused)
204{
205 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
206
207 if (!inject->aux_id)
208 inject->aux_id = sample->id;
209
210 return 0;
211}
212
Andrew Vagin26a031e2012-08-07 16:56:04 +0400213typedef int (*inject_handler)(struct perf_tool *tool,
214 union perf_event *event,
215 struct perf_sample *sample,
216 struct perf_evsel *evsel,
217 struct machine *machine);
218
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200219static int perf_event__repipe_sample(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200220 union perf_event *event,
Andrew Vagin26a031e2012-08-07 16:56:04 +0400221 struct perf_sample *sample,
222 struct perf_evsel *evsel,
223 struct machine *machine)
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300224{
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300225 if (evsel->handler) {
226 inject_handler f = evsel->handler;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400227 return f(tool, event, sample, evsel, machine);
228 }
229
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400230 build_id__mark_dso_hit(tool, event, sample, evsel, machine);
231
Adrian Hunter63c2c9f2013-07-04 16:20:20 +0300232 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300233}
234
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200235static int perf_event__repipe_mmap(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200236 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200237 struct perf_sample *sample,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200238 struct machine *machine)
Tom Zanussi454c4072010-05-01 01:41:20 -0500239{
240 int err;
241
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200242 err = perf_event__process_mmap(tool, event, sample, machine);
243 perf_event__repipe(tool, event, sample, machine);
Tom Zanussi454c4072010-05-01 01:41:20 -0500244
245 return err;
246}
247
Stephane Eranian9b07e272015-11-30 10:02:21 +0100248#ifdef HAVE_LIBELF_SUPPORT
249static int perf_event__jit_repipe_mmap(struct perf_tool *tool,
250 union perf_event *event,
251 struct perf_sample *sample,
252 struct machine *machine)
253{
254 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
255 u64 n = 0;
Adrian Hunter570735b2016-03-07 16:44:40 -0300256 int ret;
Stephane Eranian9b07e272015-11-30 10:02:21 +0100257
258 /*
259 * if jit marker, then inject jit mmaps and generate ELF images
260 */
Adrian Hunter570735b2016-03-07 16:44:40 -0300261 ret = jit_process(inject->session, &inject->output, machine,
262 event->mmap.filename, sample->pid, &n);
263 if (ret < 0)
264 return ret;
265 if (ret) {
Stephane Eranian9b07e272015-11-30 10:02:21 +0100266 inject->bytes_written += n;
267 return 0;
268 }
269 return perf_event__repipe_mmap(tool, event, sample, machine);
270}
271#endif
272
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200273static int perf_event__repipe_mmap2(struct perf_tool *tool,
274 union perf_event *event,
275 struct perf_sample *sample,
276 struct machine *machine)
277{
278 int err;
279
280 err = perf_event__process_mmap2(tool, event, sample, machine);
281 perf_event__repipe(tool, event, sample, machine);
282
283 return err;
284}
285
Stephane Eranian9b07e272015-11-30 10:02:21 +0100286#ifdef HAVE_LIBELF_SUPPORT
287static int perf_event__jit_repipe_mmap2(struct perf_tool *tool,
288 union perf_event *event,
289 struct perf_sample *sample,
290 struct machine *machine)
291{
292 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
293 u64 n = 0;
Adrian Hunter570735b2016-03-07 16:44:40 -0300294 int ret;
Stephane Eranian9b07e272015-11-30 10:02:21 +0100295
296 /*
297 * if jit marker, then inject jit mmaps and generate ELF images
298 */
Adrian Hunter570735b2016-03-07 16:44:40 -0300299 ret = jit_process(inject->session, &inject->output, machine,
300 event->mmap2.filename, sample->pid, &n);
301 if (ret < 0)
302 return ret;
303 if (ret) {
Stephane Eranian9b07e272015-11-30 10:02:21 +0100304 inject->bytes_written += n;
305 return 0;
306 }
307 return perf_event__repipe_mmap2(tool, event, sample, machine);
308}
309#endif
310
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300311static int perf_event__repipe_fork(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200312 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200313 struct perf_sample *sample,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200314 struct machine *machine)
Tom Zanussi454c4072010-05-01 01:41:20 -0500315{
316 int err;
317
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300318 err = perf_event__process_fork(tool, event, sample, machine);
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200319 perf_event__repipe(tool, event, sample, machine);
Tom Zanussi454c4072010-05-01 01:41:20 -0500320
321 return err;
322}
323
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300324static int perf_event__repipe_comm(struct perf_tool *tool,
325 union perf_event *event,
326 struct perf_sample *sample,
327 struct machine *machine)
328{
329 int err;
330
331 err = perf_event__process_comm(tool, event, sample, machine);
332 perf_event__repipe(tool, event, sample, machine);
333
334 return err;
335}
336
337static int perf_event__repipe_exit(struct perf_tool *tool,
338 union perf_event *event,
339 struct perf_sample *sample,
340 struct machine *machine)
341{
342 int err;
343
344 err = perf_event__process_exit(tool, event, sample, machine);
345 perf_event__repipe(tool, event, sample, machine);
346
347 return err;
348}
349
Adrian Hunter47c3d102013-07-04 16:20:21 +0300350static int perf_event__repipe_tracing_data(struct perf_tool *tool,
351 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200352 struct perf_session *session)
Tom Zanussi454c4072010-05-01 01:41:20 -0500353{
354 int err;
355
Adrian Hunter47c3d102013-07-04 16:20:21 +0300356 perf_event__repipe_synth(tool, event);
357 err = perf_event__process_tracing_data(tool, event, session);
Tom Zanussi454c4072010-05-01 01:41:20 -0500358
359 return err;
360}
361
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300362static int perf_event__repipe_id_index(struct perf_tool *tool,
363 union perf_event *event,
364 struct perf_session *session)
365{
366 int err;
367
368 perf_event__repipe_synth(tool, event);
369 err = perf_event__process_id_index(tool, event, session);
370
371 return err;
372}
373
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300374static int dso__read_build_id(struct dso *dso)
Tom Zanussi454c4072010-05-01 01:41:20 -0500375{
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300376 if (dso->has_build_id)
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300377 return 0;
Tom Zanussi454c4072010-05-01 01:41:20 -0500378
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300379 if (filename__read_build_id(dso->long_name, dso->build_id,
380 sizeof(dso->build_id)) > 0) {
381 dso->has_build_id = true;
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300382 return 0;
Tom Zanussi454c4072010-05-01 01:41:20 -0500383 }
384
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300385 return -1;
386}
Tom Zanussi454c4072010-05-01 01:41:20 -0500387
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300388static int dso__inject_build_id(struct dso *dso, struct perf_tool *tool,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200389 struct machine *machine)
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300390{
391 u16 misc = PERF_RECORD_MISC_USER;
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300392 int err;
Tom Zanussi454c4072010-05-01 01:41:20 -0500393
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300394 if (dso__read_build_id(dso) < 0) {
395 pr_debug("no build_id found for %s\n", dso->long_name);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300396 return -1;
397 }
Tom Zanussi454c4072010-05-01 01:41:20 -0500398
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300399 if (dso->kernel)
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300400 misc = PERF_RECORD_MISC_KERNEL;
401
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300402 err = perf_event__synthesize_build_id(tool, dso, misc, perf_event__repipe,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200403 machine);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300404 if (err) {
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300405 pr_err("Can't synthesize build_id event for %s\n", dso->long_name);
Tom Zanussi454c4072010-05-01 01:41:20 -0500406 return -1;
407 }
408
409 return 0;
410}
411
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200412static int perf_event__inject_buildid(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200413 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200414 struct perf_sample *sample,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300415 struct perf_evsel *evsel __maybe_unused,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200416 struct machine *machine)
Tom Zanussi454c4072010-05-01 01:41:20 -0500417{
418 struct addr_location al;
419 struct thread *thread;
420 u8 cpumode;
Tom Zanussi454c4072010-05-01 01:41:20 -0500421
422 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
423
Namhyung Kim13ce34d2014-05-12 09:56:42 +0900424 thread = machine__findnew_thread(machine, sample->pid, sample->tid);
Tom Zanussi454c4072010-05-01 01:41:20 -0500425 if (thread == NULL) {
426 pr_err("problem processing %d event, skipping it.\n",
427 event->header.type);
Tom Zanussi454c4072010-05-01 01:41:20 -0500428 goto repipe;
429 }
430
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -0300431 thread__find_addr_map(thread, cpumode, MAP__FUNCTION, sample->ip, &al);
Tom Zanussi454c4072010-05-01 01:41:20 -0500432
433 if (al.map != NULL) {
434 if (!al.map->dso->hit) {
435 al.map->dso->hit = 1;
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300436 if (map__load(al.map, NULL) >= 0) {
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200437 dso__inject_build_id(al.map->dso, tool, machine);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300438 /*
439 * If this fails, too bad, let the other side
440 * account this as unresolved.
441 */
Namhyung Kim393be2e2012-08-06 13:41:21 +0900442 } else {
Ingo Molnar89fe8082013-09-30 12:07:11 +0200443#ifdef HAVE_LIBELF_SUPPORT
Tom Zanussi454c4072010-05-01 01:41:20 -0500444 pr_warning("no symbols found in %s, maybe "
445 "install a debug package?\n",
446 al.map->dso->long_name);
Namhyung Kim393be2e2012-08-06 13:41:21 +0900447#endif
448 }
Tom Zanussi454c4072010-05-01 01:41:20 -0500449 }
450 }
451
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300452 thread__put(thread);
Tom Zanussi454c4072010-05-01 01:41:20 -0500453repipe:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200454 perf_event__repipe(tool, event, sample, machine);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300455 return 0;
Tom Zanussi454c4072010-05-01 01:41:20 -0500456}
457
Andrew Vagin26a031e2012-08-07 16:56:04 +0400458static int perf_inject__sched_process_exit(struct perf_tool *tool,
459 union perf_event *event __maybe_unused,
460 struct perf_sample *sample,
461 struct perf_evsel *evsel __maybe_unused,
462 struct machine *machine __maybe_unused)
463{
464 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
465 struct event_entry *ent;
466
467 list_for_each_entry(ent, &inject->samples, node) {
468 if (sample->tid == ent->tid) {
469 list_del_init(&ent->node);
470 free(ent);
471 break;
472 }
473 }
474
475 return 0;
476}
477
478static int perf_inject__sched_switch(struct perf_tool *tool,
479 union perf_event *event,
480 struct perf_sample *sample,
481 struct perf_evsel *evsel,
482 struct machine *machine)
483{
484 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
485 struct event_entry *ent;
486
487 perf_inject__sched_process_exit(tool, event, sample, evsel, machine);
488
489 ent = malloc(event->header.size + sizeof(struct event_entry));
490 if (ent == NULL) {
491 color_fprintf(stderr, PERF_COLOR_RED,
492 "Not enough memory to process sched switch event!");
493 return -1;
494 }
495
496 ent->tid = sample->tid;
497 memcpy(&ent->event, event, event->header.size);
498 list_add(&ent->node, &inject->samples);
499 return 0;
500}
501
502static int perf_inject__sched_stat(struct perf_tool *tool,
503 union perf_event *event __maybe_unused,
504 struct perf_sample *sample,
505 struct perf_evsel *evsel,
506 struct machine *machine)
507{
508 struct event_entry *ent;
509 union perf_event *event_sw;
510 struct perf_sample sample_sw;
511 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
512 u32 pid = perf_evsel__intval(evsel, sample, "pid");
513
514 list_for_each_entry(ent, &inject->samples, node) {
515 if (pid == ent->tid)
516 goto found;
517 }
518
519 return 0;
520found:
521 event_sw = &ent->event[0];
522 perf_evsel__parse_sample(evsel, event_sw, &sample_sw);
523
524 sample_sw.period = sample->period;
525 sample_sw.time = sample->time;
526 perf_event__synthesize_sample(event_sw, evsel->attr.sample_type,
Adrian Hunterd03f2172013-08-27 11:23:11 +0300527 evsel->attr.read_format, &sample_sw,
528 false);
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400529 build_id__mark_dso_hit(tool, event_sw, &sample_sw, evsel, machine);
Andrew Vagin26a031e2012-08-07 16:56:04 +0400530 return perf_event__repipe(tool, event_sw, &sample_sw, machine);
531}
532
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300533static void sig_handler(int sig __maybe_unused)
Tom Zanussi454c4072010-05-01 01:41:20 -0500534{
535 session_done = 1;
536}
537
Andrew Vagin26a031e2012-08-07 16:56:04 +0400538static int perf_evsel__check_stype(struct perf_evsel *evsel,
539 u64 sample_type, const char *sample_msg)
540{
541 struct perf_event_attr *attr = &evsel->attr;
542 const char *name = perf_evsel__name(evsel);
543
544 if (!(attr->sample_type & sample_type)) {
545 pr_err("Samples for %s event do not have %s attribute set.",
546 name, sample_msg);
547 return -EINVAL;
548 }
549
550 return 0;
551}
552
Adrian Hunterf56fb982015-09-25 16:15:55 +0300553static int drop_sample(struct perf_tool *tool __maybe_unused,
554 union perf_event *event __maybe_unused,
555 struct perf_sample *sample __maybe_unused,
556 struct perf_evsel *evsel __maybe_unused,
557 struct machine *machine __maybe_unused)
558{
559 return 0;
560}
561
562static void strip_init(struct perf_inject *inject)
563{
564 struct perf_evlist *evlist = inject->session->evlist;
565 struct perf_evsel *evsel;
566
567 inject->tool.context_switch = perf_event__drop;
568
569 evlist__for_each(evlist, evsel)
570 evsel->handler = drop_sample;
571}
572
573static bool has_tracking(struct perf_evsel *evsel)
574{
575 return evsel->attr.mmap || evsel->attr.mmap2 || evsel->attr.comm ||
576 evsel->attr.task;
577}
578
579#define COMPAT_MASK (PERF_SAMPLE_ID | PERF_SAMPLE_TID | PERF_SAMPLE_TIME | \
580 PERF_SAMPLE_ID | PERF_SAMPLE_CPU | PERF_SAMPLE_IDENTIFIER)
581
582/*
583 * In order that the perf.data file is parsable, tracking events like MMAP need
584 * their selected event to exist, except if there is only 1 selected event left
585 * and it has a compatible sample type.
586 */
587static bool ok_to_remove(struct perf_evlist *evlist,
588 struct perf_evsel *evsel_to_remove)
589{
590 struct perf_evsel *evsel;
591 int cnt = 0;
592 bool ok = false;
593
594 if (!has_tracking(evsel_to_remove))
595 return true;
596
597 evlist__for_each(evlist, evsel) {
598 if (evsel->handler != drop_sample) {
599 cnt += 1;
600 if ((evsel->attr.sample_type & COMPAT_MASK) ==
601 (evsel_to_remove->attr.sample_type & COMPAT_MASK))
602 ok = true;
603 }
604 }
605
606 return ok && cnt == 1;
607}
608
609static void strip_fini(struct perf_inject *inject)
610{
611 struct perf_evlist *evlist = inject->session->evlist;
612 struct perf_evsel *evsel, *tmp;
613
614 /* Remove non-synthesized evsels if possible */
615 evlist__for_each_safe(evlist, tmp, evsel) {
616 if (evsel->handler == drop_sample &&
617 ok_to_remove(evlist, evsel)) {
618 pr_debug("Deleting %s\n", perf_evsel__name(evsel));
619 perf_evlist__remove(evlist, evsel);
620 perf_evsel__delete(evsel);
621 }
622 }
623}
624
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300625static int __cmd_inject(struct perf_inject *inject)
Tom Zanussi454c4072010-05-01 01:41:20 -0500626{
Tom Zanussi454c4072010-05-01 01:41:20 -0500627 int ret = -EINVAL;
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900628 struct perf_session *session = inject->session;
Jiri Olsa34069122013-10-29 19:04:57 +0100629 struct perf_data_file *file_out = &inject->output;
Namhyung Kim42aa2762015-01-29 17:06:48 +0900630 int fd = perf_data_file__fd(file_out);
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300631 u64 output_data_offset;
Tom Zanussi454c4072010-05-01 01:41:20 -0500632
633 signal(SIGINT, sig_handler);
634
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300635 if (inject->build_ids || inject->sched_stat ||
636 inject->itrace_synth_opts.set) {
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300637 inject->tool.mmap = perf_event__repipe_mmap;
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200638 inject->tool.mmap2 = perf_event__repipe_mmap2;
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300639 inject->tool.fork = perf_event__repipe_fork;
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300640 inject->tool.tracing_data = perf_event__repipe_tracing_data;
Tom Zanussi454c4072010-05-01 01:41:20 -0500641 }
642
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300643 output_data_offset = session->header.data_offset;
644
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400645 if (inject->build_ids) {
646 inject->tool.sample = perf_event__inject_buildid;
647 } else if (inject->sched_stat) {
Andrew Vagin26a031e2012-08-07 16:56:04 +0400648 struct perf_evsel *evsel;
649
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300650 evlist__for_each(session->evlist, evsel) {
Andrew Vagin26a031e2012-08-07 16:56:04 +0400651 const char *name = perf_evsel__name(evsel);
652
653 if (!strcmp(name, "sched:sched_switch")) {
654 if (perf_evsel__check_stype(evsel, PERF_SAMPLE_TID, "TID"))
655 return -EINVAL;
656
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300657 evsel->handler = perf_inject__sched_switch;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400658 } else if (!strcmp(name, "sched:sched_process_exit"))
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300659 evsel->handler = perf_inject__sched_process_exit;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400660 else if (!strncmp(name, "sched:sched_stat_", 17))
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300661 evsel->handler = perf_inject__sched_stat;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400662 }
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300663 } else if (inject->itrace_synth_opts.set) {
664 session->itrace_synth_opts = &inject->itrace_synth_opts;
665 inject->itrace_synth_opts.inject = true;
666 inject->tool.comm = perf_event__repipe_comm;
667 inject->tool.exit = perf_event__repipe_exit;
668 inject->tool.id_index = perf_event__repipe_id_index;
669 inject->tool.auxtrace_info = perf_event__process_auxtrace_info;
670 inject->tool.auxtrace = perf_event__process_auxtrace;
Adrian Hunter73117302015-09-25 16:15:54 +0300671 inject->tool.aux = perf_event__drop_aux;
672 inject->tool.itrace_start = perf_event__drop_aux,
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300673 inject->tool.ordered_events = true;
674 inject->tool.ordering_requires_timestamps = true;
675 /* Allow space in the header for new attributes */
676 output_data_offset = 4096;
Adrian Hunterf56fb982015-09-25 16:15:55 +0300677 if (inject->strip)
678 strip_init(inject);
Andrew Vagin26a031e2012-08-07 16:56:04 +0400679 }
680
Adrian Hunter99fa2982015-04-30 17:37:25 +0300681 if (!inject->itrace_synth_opts.set)
682 auxtrace_index__free(&session->auxtrace_index);
683
Jiri Olsa34069122013-10-29 19:04:57 +0100684 if (!file_out->is_pipe)
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300685 lseek(fd, output_data_offset, SEEK_SET);
Andrew Vagine558a5b2012-08-07 16:56:02 +0400686
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -0300687 ret = perf_session__process_events(session);
Tom Zanussi454c4072010-05-01 01:41:20 -0500688
Jiri Olsa34069122013-10-29 19:04:57 +0100689 if (!file_out->is_pipe) {
Adrian Hunter640dad42016-03-07 16:44:38 -0300690 if (inject->build_ids)
Adrian Huntere38b43c2014-07-14 13:02:34 +0300691 perf_header__set_feat(&session->header,
692 HEADER_BUILD_ID);
Adrian Hunter640dad42016-03-07 16:44:38 -0300693 /*
694 * Keep all buildids when there is unprocessed AUX data because
695 * it is not known which ones the AUX trace hits.
696 */
697 if (perf_header__has_feat(&session->header, HEADER_BUILD_ID) &&
698 inject->have_auxtrace && !inject->itrace_synth_opts.set)
699 dsos__hit_all(session);
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300700 /*
701 * The AUX areas have been removed and replaced with
Adrian Hunter73117302015-09-25 16:15:54 +0300702 * synthesized hardware events, so clear the feature flag and
703 * remove the evsel.
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300704 */
Adrian Hunter051a01b2015-09-25 16:15:43 +0300705 if (inject->itrace_synth_opts.set) {
Adrian Hunter73117302015-09-25 16:15:54 +0300706 struct perf_evsel *evsel;
707
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300708 perf_header__clear_feat(&session->header,
709 HEADER_AUXTRACE);
Adrian Hunter051a01b2015-09-25 16:15:43 +0300710 if (inject->itrace_synth_opts.last_branch)
711 perf_header__set_feat(&session->header,
712 HEADER_BRANCH_STACK);
Adrian Hunter73117302015-09-25 16:15:54 +0300713 evsel = perf_evlist__id2evsel_strict(session->evlist,
714 inject->aux_id);
715 if (evsel) {
716 pr_debug("Deleting %s\n",
717 perf_evsel__name(evsel));
718 perf_evlist__remove(session->evlist, evsel);
719 perf_evsel__delete(evsel);
720 }
Adrian Hunterf56fb982015-09-25 16:15:55 +0300721 if (inject->strip)
722 strip_fini(inject);
Adrian Hunter051a01b2015-09-25 16:15:43 +0300723 }
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300724 session->header.data_offset = output_data_offset;
Andrew Vagine558a5b2012-08-07 16:56:02 +0400725 session->header.data_size = inject->bytes_written;
Namhyung Kim42aa2762015-01-29 17:06:48 +0900726 perf_session__write_header(session, session->evlist, fd, true);
Andrew Vagine558a5b2012-08-07 16:56:02 +0400727 }
728
Tom Zanussi454c4072010-05-01 01:41:20 -0500729 return ret;
730}
731
Stephane Eranian9b07e272015-11-30 10:02:21 +0100732#ifdef HAVE_LIBELF_SUPPORT
733static int
734jit_validate_events(struct perf_session *session)
735{
736 struct perf_evsel *evsel;
737
738 /*
739 * check that all events use CLOCK_MONOTONIC
740 */
741 evlist__for_each(session->evlist, evsel) {
742 if (evsel->attr.use_clockid == 0 || evsel->attr.clockid != CLOCK_MONOTONIC)
743 return -1;
744 }
745 return 0;
746}
747#endif
748
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300749int cmd_inject(int argc, const char **argv, const char *prefix __maybe_unused)
Tom Zanussi454c4072010-05-01 01:41:20 -0500750{
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300751 struct perf_inject inject = {
752 .tool = {
753 .sample = perf_event__repipe_sample,
754 .mmap = perf_event__repipe,
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200755 .mmap2 = perf_event__repipe,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300756 .comm = perf_event__repipe,
757 .fork = perf_event__repipe,
758 .exit = perf_event__repipe,
759 .lost = perf_event__repipe,
Adrian Hunterd8145b32015-11-13 11:48:32 +0200760 .lost_samples = perf_event__repipe,
Adrian Hunter4a96f7a2015-04-30 17:37:29 +0300761 .aux = perf_event__repipe,
Adrian Hunter0ad21f62015-04-30 17:37:30 +0300762 .itrace_start = perf_event__repipe,
Adrian Hunter02860392015-07-21 12:44:03 +0300763 .context_switch = perf_event__repipe,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300764 .read = perf_event__repipe_sample,
765 .throttle = perf_event__repipe,
766 .unthrottle = perf_event__repipe,
767 .attr = perf_event__repipe_attr,
Adrian Hunter47c3d102013-07-04 16:20:21 +0300768 .tracing_data = perf_event__repipe_op2_synth,
Adrian Huntercd17a9b2015-04-21 12:21:54 +0300769 .auxtrace_info = perf_event__repipe_op2_synth,
770 .auxtrace = perf_event__repipe_auxtrace,
771 .auxtrace_error = perf_event__repipe_op2_synth,
Arnaldo Carvalho de Melod704ebd2015-03-03 12:37:54 -0300772 .finished_round = perf_event__repipe_oe_synth,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300773 .build_id = perf_event__repipe_op2_synth,
Adrian Hunter3c659ee2014-10-27 15:49:22 +0200774 .id_index = perf_event__repipe_op2_synth,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300775 },
Andrew Vagine558a5b2012-08-07 16:56:02 +0400776 .input_name = "-",
Andrew Vagin26a031e2012-08-07 16:56:04 +0400777 .samples = LIST_HEAD_INIT(inject.samples),
Jiri Olsa34069122013-10-29 19:04:57 +0100778 .output = {
779 .path = "-",
780 .mode = PERF_DATA_MODE_WRITE,
781 },
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300782 };
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900783 struct perf_data_file file = {
784 .mode = PERF_DATA_MODE_READ,
785 };
786 int ret;
787
Stephane Eranian9b07e272015-11-30 10:02:21 +0100788 struct option options[] = {
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300789 OPT_BOOLEAN('b', "build-ids", &inject.build_ids,
790 "Inject build-ids into the output stream"),
Andrew Vagine558a5b2012-08-07 16:56:02 +0400791 OPT_STRING('i', "input", &inject.input_name, "file",
792 "input file name"),
Jiri Olsa34069122013-10-29 19:04:57 +0100793 OPT_STRING('o', "output", &inject.output.path, "file",
Andrew Vagine558a5b2012-08-07 16:56:02 +0400794 "output file name"),
Andrew Vagin26a031e2012-08-07 16:56:04 +0400795 OPT_BOOLEAN('s', "sched-stat", &inject.sched_stat,
796 "Merge sched-stat and sched-switch for getting events "
797 "where and how long tasks slept"),
Stephane Eranian9b07e272015-11-30 10:02:21 +0100798 OPT_BOOLEAN('j', "jit", &inject.jit_mode, "merge jitdump files into perf.data file"),
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300799 OPT_INCR('v', "verbose", &verbose,
800 "be more verbose (show build ids, etc)"),
Adrian Huntera7a2b8b2014-07-22 16:17:38 +0300801 OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name, "file",
802 "kallsyms pathname"),
Yunlong Songccaa4742015-04-02 21:47:11 +0800803 OPT_BOOLEAN('f', "force", &file.force, "don't complain, do it"),
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300804 OPT_CALLBACK_OPTARG(0, "itrace", &inject.itrace_synth_opts,
805 NULL, "opts", "Instruction Tracing options",
806 itrace_parse_synth_opts),
Adrian Hunterf56fb982015-09-25 16:15:55 +0300807 OPT_BOOLEAN(0, "strip", &inject.strip,
808 "strip non-synthesized events (use with --itrace)"),
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300809 OPT_END()
810 };
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300811 const char * const inject_usage[] = {
812 "perf inject [<options>]",
813 NULL
814 };
Stephane Eranian9b07e272015-11-30 10:02:21 +0100815#ifndef HAVE_LIBELF_SUPPORT
816 set_option_nobuild(options, 'j', "jit", "NO_LIBELF=1", true);
817#endif
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300818 argc = parse_options(argc, argv, options, inject_usage, 0);
Tom Zanussi454c4072010-05-01 01:41:20 -0500819
820 /*
821 * Any (unrecognized) arguments left?
822 */
823 if (argc)
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300824 usage_with_options(inject_usage, options);
Tom Zanussi454c4072010-05-01 01:41:20 -0500825
Adrian Hunterf56fb982015-09-25 16:15:55 +0300826 if (inject.strip && !inject.itrace_synth_opts.set) {
827 pr_err("--strip option requires --itrace option\n");
828 return -1;
829 }
830
Jiri Olsa34069122013-10-29 19:04:57 +0100831 if (perf_data_file__open(&inject.output)) {
832 perror("failed to create output file");
833 return -1;
Andrew Vagine558a5b2012-08-07 16:56:02 +0400834 }
835
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -0300836 inject.tool.ordered_events = inject.sched_stat;
837
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900838 file.path = inject.input_name;
839 inject.session = perf_session__new(&file, true, &inject.tool);
840 if (inject.session == NULL)
Taeung Song52e028342014-09-24 10:33:37 +0900841 return -1;
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900842
Arnaldo Carvalho de Melo921f3fa2016-01-22 18:41:00 -0300843 if (inject.build_ids) {
844 /*
845 * to make sure the mmap records are ordered correctly
846 * and so that the correct especially due to jitted code
847 * mmaps. We cannot generate the buildid hit list and
848 * inject the jit mmaps at the same time for now.
849 */
850 inject.tool.ordered_events = true;
851 inject.tool.ordering_requires_timestamps = true;
852 }
Stephane Eranian9b07e272015-11-30 10:02:21 +0100853#ifdef HAVE_LIBELF_SUPPORT
854 if (inject.jit_mode) {
855 /*
856 * validate event is using the correct clockid
857 */
858 if (jit_validate_events(inject.session)) {
859 fprintf(stderr, "error, jitted code must be sampled with perf record -k 1\n");
860 return -1;
861 }
862 inject.tool.mmap2 = perf_event__jit_repipe_mmap2;
863 inject.tool.mmap = perf_event__jit_repipe_mmap;
864 inject.tool.ordered_events = true;
865 inject.tool.ordering_requires_timestamps = true;
866 /*
867 * JIT MMAP injection injects all MMAP events in one go, so it
868 * does not obey finished_round semantics.
869 */
870 inject.tool.finished_round = perf_event__drop_oe;
871 }
872#endif
Taeung Song9fedfb02015-06-30 17:15:20 +0900873 ret = symbol__init(&inject.session->header.env);
874 if (ret < 0)
875 goto out_delete;
Tom Zanussi454c4072010-05-01 01:41:20 -0500876
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900877 ret = __cmd_inject(&inject);
878
Taeung Song9fedfb02015-06-30 17:15:20 +0900879out_delete:
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900880 perf_session__delete(inject.session);
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900881 return ret;
Tom Zanussi454c4072010-05-01 01:41:20 -0500882}