blob: 24086b7f1b14a2932867564612447683fc1a6de1 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Tom Zanussi454c4072010-05-01 01:41:20 -05002/*
3 * builtin-inject.c
4 *
5 * Builtin inject command: Examine the live mode (stdin) event stream
6 * and repipe it to stdout while optionally injecting additional
7 * events into it.
8 */
9#include "builtin.h"
10
11#include "perf.h"
Andrew Vagin26a031e2012-08-07 16:56:04 +040012#include "util/color.h"
13#include "util/evlist.h"
14#include "util/evsel.h"
Arnaldo Carvalho de Melo1101f692019-01-27 13:42:37 +010015#include "util/map.h"
Tom Zanussi454c4072010-05-01 01:41:20 -050016#include "util/session.h"
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020017#include "util/tool.h"
Tom Zanussi454c4072010-05-01 01:41:20 -050018#include "util/debug.h"
Andrew Vagin54a3cf52012-08-07 16:56:05 +040019#include "util/build-id.h"
Jiri Olsaf5fc14122013-10-15 16:27:32 +020020#include "util/data.h"
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +030021#include "util/auxtrace.h"
Stephane Eranian9b07e272015-11-30 10:02:21 +010022#include "util/jit.h"
Arnaldo Carvalho de Melodaecf9e2019-01-28 00:03:34 +010023#include "util/symbol.h"
Arnaldo Carvalho de Meloe7ff8922017-04-19 21:34:35 -030024#include "util/thread.h"
Tom Zanussi454c4072010-05-01 01:41:20 -050025
Josh Poimboeuf4b6ab942015-12-15 09:39:39 -060026#include <subcmd/parse-options.h>
Tom Zanussi454c4072010-05-01 01:41:20 -050027
Andrew Vagin26a031e2012-08-07 16:56:04 +040028#include <linux/list.h>
Arnaldo Carvalho de Meloa43783a2017-04-18 10:46:11 -030029#include <errno.h>
Arnaldo Carvalho de Melo9607ad32017-04-19 15:49:18 -030030#include <signal.h>
Andrew Vagin26a031e2012-08-07 16:56:04 +040031
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -030032struct perf_inject {
Jiri Olsa34069122013-10-29 19:04:57 +010033 struct perf_tool tool;
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +090034 struct perf_session *session;
Jiri Olsa34069122013-10-29 19:04:57 +010035 bool build_ids;
36 bool sched_stat;
Adrian Huntercd10b282015-04-30 17:37:26 +030037 bool have_auxtrace;
Adrian Hunterf56fb982015-09-25 16:15:55 +030038 bool strip;
Stephane Eranian9b07e272015-11-30 10:02:21 +010039 bool jit_mode;
Jiri Olsa34069122013-10-29 19:04:57 +010040 const char *input_name;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +010041 struct perf_data output;
Jiri Olsa34069122013-10-29 19:04:57 +010042 u64 bytes_written;
Adrian Hunter73117302015-09-25 16:15:54 +030043 u64 aux_id;
Jiri Olsa34069122013-10-29 19:04:57 +010044 struct list_head samples;
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +030045 struct itrace_synth_opts itrace_synth_opts;
Andrew Vagin26a031e2012-08-07 16:56:04 +040046};
47
48struct event_entry {
49 struct list_head node;
50 u32 tid;
51 union perf_event event[0];
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -030052};
Tom Zanussi454c4072010-05-01 01:41:20 -050053
Adrian Huntercd17a9b2015-04-21 12:21:54 +030054static int output_bytes(struct perf_inject *inject, void *buf, size_t sz)
Tom Zanussi454c4072010-05-01 01:41:20 -050055{
Jiri Olsa34069122013-10-29 19:04:57 +010056 ssize_t size;
Tom Zanussi454c4072010-05-01 01:41:20 -050057
Jiri Olsa8ceb41d2017-01-23 22:07:59 +010058 size = perf_data__write(&inject->output, buf, sz);
Jiri Olsa34069122013-10-29 19:04:57 +010059 if (size < 0)
60 return -errno;
Tom Zanussi454c4072010-05-01 01:41:20 -050061
Jiri Olsa34069122013-10-29 19:04:57 +010062 inject->bytes_written += size;
Tom Zanussi454c4072010-05-01 01:41:20 -050063 return 0;
64}
65
Adrian Huntercd17a9b2015-04-21 12:21:54 +030066static int perf_event__repipe_synth(struct perf_tool *tool,
67 union perf_event *event)
68{
69 struct perf_inject *inject = container_of(tool, struct perf_inject,
70 tool);
71
72 return output_bytes(inject, event, event->header.size);
73}
74
Arnaldo Carvalho de Melod704ebd2015-03-03 12:37:54 -030075static int perf_event__repipe_oe_synth(struct perf_tool *tool,
76 union perf_event *event,
77 struct ordered_events *oe __maybe_unused)
78{
79 return perf_event__repipe_synth(tool, event);
80}
81
Jiri Olsae12b2022016-03-10 17:41:13 +010082#ifdef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +010083static int perf_event__drop_oe(struct perf_tool *tool __maybe_unused,
84 union perf_event *event __maybe_unused,
85 struct ordered_events *oe __maybe_unused)
86{
87 return 0;
88}
89#endif
90
Jiri Olsa89f16882018-09-13 14:54:03 +020091static int perf_event__repipe_op2_synth(struct perf_session *session,
92 union perf_event *event)
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -020093{
Jiri Olsa89f16882018-09-13 14:54:03 +020094 return perf_event__repipe_synth(session->tool, event);
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -020095}
96
Adrian Hunter47c3d102013-07-04 16:20:21 +030097static int perf_event__repipe_attr(struct perf_tool *tool,
98 union perf_event *event,
99 struct perf_evlist **pevlist)
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -0200100{
Adrian Hunter89c97d92013-10-22 10:34:09 +0300101 struct perf_inject *inject = container_of(tool, struct perf_inject,
102 tool);
Stephane Eranian1a1ed1b2012-05-15 13:28:11 +0200103 int ret;
Adrian Hunter47c3d102013-07-04 16:20:21 +0300104
105 ret = perf_event__process_attr(tool, event, pevlist);
Stephane Eranian1a1ed1b2012-05-15 13:28:11 +0200106 if (ret)
107 return ret;
108
Jiri Olsaa261e4a2014-06-05 18:51:44 +0200109 if (!inject->output.is_pipe)
Adrian Hunter89c97d92013-10-22 10:34:09 +0300110 return 0;
111
Adrian Hunter47c3d102013-07-04 16:20:21 +0300112 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -0200113}
114
Adrian Huntere31f0d02015-04-30 17:37:27 +0300115#ifdef HAVE_AUXTRACE_SUPPORT
116
117static int copy_bytes(struct perf_inject *inject, int fd, off_t size)
118{
119 char buf[4096];
120 ssize_t ssz;
121 int ret;
122
123 while (size > 0) {
124 ssz = read(fd, buf, min(size, (off_t)sizeof(buf)));
125 if (ssz < 0)
126 return -errno;
127 ret = output_bytes(inject, buf, ssz);
128 if (ret)
129 return ret;
130 size -= ssz;
131 }
132
133 return 0;
134}
135
Jiri Olsa73365552018-09-13 14:54:04 +0200136static s64 perf_event__repipe_auxtrace(struct perf_session *session,
137 union perf_event *event)
Adrian Huntercd17a9b2015-04-21 12:21:54 +0300138{
Jiri Olsa73365552018-09-13 14:54:04 +0200139 struct perf_tool *tool = session->tool;
Adrian Huntercd17a9b2015-04-21 12:21:54 +0300140 struct perf_inject *inject = container_of(tool, struct perf_inject,
141 tool);
142 int ret;
143
Adrian Huntercd10b282015-04-30 17:37:26 +0300144 inject->have_auxtrace = true;
145
Adrian Hunter99fa2982015-04-30 17:37:25 +0300146 if (!inject->output.is_pipe) {
147 off_t offset;
148
Jiri Olsaeae8ad82017-01-23 22:25:41 +0100149 offset = lseek(inject->output.file.fd, 0, SEEK_CUR);
Adrian Hunter99fa2982015-04-30 17:37:25 +0300150 if (offset == -1)
151 return -errno;
152 ret = auxtrace_index__auxtrace_event(&session->auxtrace_index,
153 event, offset);
154 if (ret < 0)
155 return ret;
156 }
157
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100158 if (perf_data__is_pipe(session->data) || !session->one_mmap) {
Adrian Huntercd17a9b2015-04-21 12:21:54 +0300159 ret = output_bytes(inject, event, event->header.size);
160 if (ret < 0)
161 return ret;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100162 ret = copy_bytes(inject, perf_data__fd(session->data),
Adrian Huntercd17a9b2015-04-21 12:21:54 +0300163 event->auxtrace.size);
164 } else {
165 ret = output_bytes(inject, event,
166 event->header.size + event->auxtrace.size);
167 }
168 if (ret < 0)
169 return ret;
170
171 return event->auxtrace.size;
172}
173
Adrian Huntere31f0d02015-04-30 17:37:27 +0300174#else
175
176static s64
Jiri Olsa73365552018-09-13 14:54:04 +0200177perf_event__repipe_auxtrace(struct perf_session *session __maybe_unused,
178 union perf_event *event __maybe_unused)
Adrian Huntere31f0d02015-04-30 17:37:27 +0300179{
180 pr_err("AUX area tracing not supported\n");
181 return -EINVAL;
182}
183
184#endif
185
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200186static int perf_event__repipe(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200187 union perf_event *event,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300188 struct perf_sample *sample __maybe_unused,
Adrian Hunter63c2c9f2013-07-04 16:20:20 +0300189 struct machine *machine __maybe_unused)
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -0200190{
Adrian Hunter63c2c9f2013-07-04 16:20:20 +0300191 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -0200192}
193
Adrian Hunterf56fb982015-09-25 16:15:55 +0300194static int perf_event__drop(struct perf_tool *tool __maybe_unused,
195 union perf_event *event __maybe_unused,
196 struct perf_sample *sample __maybe_unused,
197 struct machine *machine __maybe_unused)
198{
199 return 0;
200}
201
Adrian Hunter73117302015-09-25 16:15:54 +0300202static int perf_event__drop_aux(struct perf_tool *tool,
203 union perf_event *event __maybe_unused,
204 struct perf_sample *sample,
205 struct machine *machine __maybe_unused)
206{
207 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
208
209 if (!inject->aux_id)
210 inject->aux_id = sample->id;
211
212 return 0;
213}
214
Andrew Vagin26a031e2012-08-07 16:56:04 +0400215typedef int (*inject_handler)(struct perf_tool *tool,
216 union perf_event *event,
217 struct perf_sample *sample,
218 struct perf_evsel *evsel,
219 struct machine *machine);
220
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200221static int perf_event__repipe_sample(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200222 union perf_event *event,
Andrew Vagin26a031e2012-08-07 16:56:04 +0400223 struct perf_sample *sample,
224 struct perf_evsel *evsel,
225 struct machine *machine)
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300226{
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300227 if (evsel->handler) {
228 inject_handler f = evsel->handler;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400229 return f(tool, event, sample, evsel, machine);
230 }
231
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400232 build_id__mark_dso_hit(tool, event, sample, evsel, machine);
233
Adrian Hunter63c2c9f2013-07-04 16:20:20 +0300234 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300235}
236
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200237static int perf_event__repipe_mmap(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200238 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200239 struct perf_sample *sample,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200240 struct machine *machine)
Tom Zanussi454c4072010-05-01 01:41:20 -0500241{
242 int err;
243
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200244 err = perf_event__process_mmap(tool, event, sample, machine);
245 perf_event__repipe(tool, event, sample, machine);
Tom Zanussi454c4072010-05-01 01:41:20 -0500246
247 return err;
248}
249
Jiri Olsae12b2022016-03-10 17:41:13 +0100250#ifdef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +0100251static int perf_event__jit_repipe_mmap(struct perf_tool *tool,
252 union perf_event *event,
253 struct perf_sample *sample,
254 struct machine *machine)
255{
256 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
257 u64 n = 0;
Adrian Hunter570735b2016-03-07 16:44:40 -0300258 int ret;
Stephane Eranian9b07e272015-11-30 10:02:21 +0100259
260 /*
261 * if jit marker, then inject jit mmaps and generate ELF images
262 */
Adrian Hunter570735b2016-03-07 16:44:40 -0300263 ret = jit_process(inject->session, &inject->output, machine,
264 event->mmap.filename, sample->pid, &n);
265 if (ret < 0)
266 return ret;
267 if (ret) {
Stephane Eranian9b07e272015-11-30 10:02:21 +0100268 inject->bytes_written += n;
269 return 0;
270 }
271 return perf_event__repipe_mmap(tool, event, sample, machine);
272}
273#endif
274
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200275static int perf_event__repipe_mmap2(struct perf_tool *tool,
276 union perf_event *event,
277 struct perf_sample *sample,
278 struct machine *machine)
279{
280 int err;
281
282 err = perf_event__process_mmap2(tool, event, sample, machine);
283 perf_event__repipe(tool, event, sample, machine);
284
285 return err;
286}
287
Jiri Olsae12b2022016-03-10 17:41:13 +0100288#ifdef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +0100289static int perf_event__jit_repipe_mmap2(struct perf_tool *tool,
290 union perf_event *event,
291 struct perf_sample *sample,
292 struct machine *machine)
293{
294 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
295 u64 n = 0;
Adrian Hunter570735b2016-03-07 16:44:40 -0300296 int ret;
Stephane Eranian9b07e272015-11-30 10:02:21 +0100297
298 /*
299 * if jit marker, then inject jit mmaps and generate ELF images
300 */
Adrian Hunter570735b2016-03-07 16:44:40 -0300301 ret = jit_process(inject->session, &inject->output, machine,
302 event->mmap2.filename, sample->pid, &n);
303 if (ret < 0)
304 return ret;
305 if (ret) {
Stephane Eranian9b07e272015-11-30 10:02:21 +0100306 inject->bytes_written += n;
307 return 0;
308 }
309 return perf_event__repipe_mmap2(tool, event, sample, machine);
310}
311#endif
312
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300313static int perf_event__repipe_fork(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200314 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200315 struct perf_sample *sample,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200316 struct machine *machine)
Tom Zanussi454c4072010-05-01 01:41:20 -0500317{
318 int err;
319
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300320 err = perf_event__process_fork(tool, event, sample, machine);
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200321 perf_event__repipe(tool, event, sample, machine);
Tom Zanussi454c4072010-05-01 01:41:20 -0500322
323 return err;
324}
325
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300326static int perf_event__repipe_comm(struct perf_tool *tool,
327 union perf_event *event,
328 struct perf_sample *sample,
329 struct machine *machine)
330{
331 int err;
332
333 err = perf_event__process_comm(tool, event, sample, machine);
334 perf_event__repipe(tool, event, sample, machine);
335
336 return err;
337}
338
Hari Bathinif3b36142017-03-08 02:11:43 +0530339static int perf_event__repipe_namespaces(struct perf_tool *tool,
340 union perf_event *event,
341 struct perf_sample *sample,
342 struct machine *machine)
343{
344 int err = perf_event__process_namespaces(tool, event, sample, machine);
345
346 perf_event__repipe(tool, event, sample, machine);
347
348 return err;
349}
350
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300351static int perf_event__repipe_exit(struct perf_tool *tool,
352 union perf_event *event,
353 struct perf_sample *sample,
354 struct machine *machine)
355{
356 int err;
357
358 err = perf_event__process_exit(tool, event, sample, machine);
359 perf_event__repipe(tool, event, sample, machine);
360
361 return err;
362}
363
Jiri Olsa89f16882018-09-13 14:54:03 +0200364static int perf_event__repipe_tracing_data(struct perf_session *session,
365 union perf_event *event)
Tom Zanussi454c4072010-05-01 01:41:20 -0500366{
367 int err;
368
Jiri Olsa89f16882018-09-13 14:54:03 +0200369 perf_event__repipe_synth(session->tool, event);
370 err = perf_event__process_tracing_data(session, event);
Tom Zanussi454c4072010-05-01 01:41:20 -0500371
372 return err;
373}
374
Jiri Olsa89f16882018-09-13 14:54:03 +0200375static int perf_event__repipe_id_index(struct perf_session *session,
376 union perf_event *event)
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300377{
378 int err;
379
Jiri Olsa89f16882018-09-13 14:54:03 +0200380 perf_event__repipe_synth(session->tool, event);
381 err = perf_event__process_id_index(session, event);
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300382
383 return err;
384}
385
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300386static int dso__read_build_id(struct dso *dso)
Tom Zanussi454c4072010-05-01 01:41:20 -0500387{
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300388 if (dso->has_build_id)
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300389 return 0;
Tom Zanussi454c4072010-05-01 01:41:20 -0500390
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300391 if (filename__read_build_id(dso->long_name, dso->build_id,
392 sizeof(dso->build_id)) > 0) {
393 dso->has_build_id = true;
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300394 return 0;
Tom Zanussi454c4072010-05-01 01:41:20 -0500395 }
396
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300397 return -1;
398}
Tom Zanussi454c4072010-05-01 01:41:20 -0500399
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300400static int dso__inject_build_id(struct dso *dso, struct perf_tool *tool,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200401 struct machine *machine)
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300402{
403 u16 misc = PERF_RECORD_MISC_USER;
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300404 int err;
Tom Zanussi454c4072010-05-01 01:41:20 -0500405
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300406 if (dso__read_build_id(dso) < 0) {
407 pr_debug("no build_id found for %s\n", dso->long_name);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300408 return -1;
409 }
Tom Zanussi454c4072010-05-01 01:41:20 -0500410
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300411 if (dso->kernel)
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300412 misc = PERF_RECORD_MISC_KERNEL;
413
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300414 err = perf_event__synthesize_build_id(tool, dso, misc, perf_event__repipe,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200415 machine);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300416 if (err) {
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300417 pr_err("Can't synthesize build_id event for %s\n", dso->long_name);
Tom Zanussi454c4072010-05-01 01:41:20 -0500418 return -1;
419 }
420
421 return 0;
422}
423
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200424static int perf_event__inject_buildid(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200425 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200426 struct perf_sample *sample,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300427 struct perf_evsel *evsel __maybe_unused,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200428 struct machine *machine)
Tom Zanussi454c4072010-05-01 01:41:20 -0500429{
430 struct addr_location al;
431 struct thread *thread;
Tom Zanussi454c4072010-05-01 01:41:20 -0500432
Namhyung Kim13ce34d2014-05-12 09:56:42 +0900433 thread = machine__findnew_thread(machine, sample->pid, sample->tid);
Tom Zanussi454c4072010-05-01 01:41:20 -0500434 if (thread == NULL) {
435 pr_err("problem processing %d event, skipping it.\n",
436 event->header.type);
Tom Zanussi454c4072010-05-01 01:41:20 -0500437 goto repipe;
438 }
439
Arnaldo Carvalho de Melo71a84b52018-04-24 11:58:56 -0300440 if (thread__find_map(thread, sample->cpumode, sample->ip, &al)) {
Tom Zanussi454c4072010-05-01 01:41:20 -0500441 if (!al.map->dso->hit) {
442 al.map->dso->hit = 1;
Arnaldo Carvalho de Melobe39db92016-09-01 19:25:52 -0300443 if (map__load(al.map) >= 0) {
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200444 dso__inject_build_id(al.map->dso, tool, machine);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300445 /*
446 * If this fails, too bad, let the other side
447 * account this as unresolved.
448 */
Namhyung Kim393be2e2012-08-06 13:41:21 +0900449 } else {
Ingo Molnar89fe8082013-09-30 12:07:11 +0200450#ifdef HAVE_LIBELF_SUPPORT
Tom Zanussi454c4072010-05-01 01:41:20 -0500451 pr_warning("no symbols found in %s, maybe "
452 "install a debug package?\n",
453 al.map->dso->long_name);
Namhyung Kim393be2e2012-08-06 13:41:21 +0900454#endif
455 }
Tom Zanussi454c4072010-05-01 01:41:20 -0500456 }
457 }
458
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300459 thread__put(thread);
Tom Zanussi454c4072010-05-01 01:41:20 -0500460repipe:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200461 perf_event__repipe(tool, event, sample, machine);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300462 return 0;
Tom Zanussi454c4072010-05-01 01:41:20 -0500463}
464
Andrew Vagin26a031e2012-08-07 16:56:04 +0400465static int perf_inject__sched_process_exit(struct perf_tool *tool,
466 union perf_event *event __maybe_unused,
467 struct perf_sample *sample,
468 struct perf_evsel *evsel __maybe_unused,
469 struct machine *machine __maybe_unused)
470{
471 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
472 struct event_entry *ent;
473
474 list_for_each_entry(ent, &inject->samples, node) {
475 if (sample->tid == ent->tid) {
476 list_del_init(&ent->node);
477 free(ent);
478 break;
479 }
480 }
481
482 return 0;
483}
484
485static int perf_inject__sched_switch(struct perf_tool *tool,
486 union perf_event *event,
487 struct perf_sample *sample,
488 struct perf_evsel *evsel,
489 struct machine *machine)
490{
491 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
492 struct event_entry *ent;
493
494 perf_inject__sched_process_exit(tool, event, sample, evsel, machine);
495
496 ent = malloc(event->header.size + sizeof(struct event_entry));
497 if (ent == NULL) {
498 color_fprintf(stderr, PERF_COLOR_RED,
499 "Not enough memory to process sched switch event!");
500 return -1;
501 }
502
503 ent->tid = sample->tid;
504 memcpy(&ent->event, event, event->header.size);
505 list_add(&ent->node, &inject->samples);
506 return 0;
507}
508
509static int perf_inject__sched_stat(struct perf_tool *tool,
510 union perf_event *event __maybe_unused,
511 struct perf_sample *sample,
512 struct perf_evsel *evsel,
513 struct machine *machine)
514{
515 struct event_entry *ent;
516 union perf_event *event_sw;
517 struct perf_sample sample_sw;
518 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
519 u32 pid = perf_evsel__intval(evsel, sample, "pid");
520
521 list_for_each_entry(ent, &inject->samples, node) {
522 if (pid == ent->tid)
523 goto found;
524 }
525
526 return 0;
527found:
528 event_sw = &ent->event[0];
529 perf_evsel__parse_sample(evsel, event_sw, &sample_sw);
530
531 sample_sw.period = sample->period;
532 sample_sw.time = sample->time;
533 perf_event__synthesize_sample(event_sw, evsel->attr.sample_type,
Adrian Hunter936f1f32018-01-16 15:14:52 +0200534 evsel->attr.read_format, &sample_sw);
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400535 build_id__mark_dso_hit(tool, event_sw, &sample_sw, evsel, machine);
Andrew Vagin26a031e2012-08-07 16:56:04 +0400536 return perf_event__repipe(tool, event_sw, &sample_sw, machine);
537}
538
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300539static void sig_handler(int sig __maybe_unused)
Tom Zanussi454c4072010-05-01 01:41:20 -0500540{
541 session_done = 1;
542}
543
Andrew Vagin26a031e2012-08-07 16:56:04 +0400544static int perf_evsel__check_stype(struct perf_evsel *evsel,
545 u64 sample_type, const char *sample_msg)
546{
547 struct perf_event_attr *attr = &evsel->attr;
548 const char *name = perf_evsel__name(evsel);
549
550 if (!(attr->sample_type & sample_type)) {
551 pr_err("Samples for %s event do not have %s attribute set.",
552 name, sample_msg);
553 return -EINVAL;
554 }
555
556 return 0;
557}
558
Adrian Hunterf56fb982015-09-25 16:15:55 +0300559static int drop_sample(struct perf_tool *tool __maybe_unused,
560 union perf_event *event __maybe_unused,
561 struct perf_sample *sample __maybe_unused,
562 struct perf_evsel *evsel __maybe_unused,
563 struct machine *machine __maybe_unused)
564{
565 return 0;
566}
567
568static void strip_init(struct perf_inject *inject)
569{
570 struct perf_evlist *evlist = inject->session->evlist;
571 struct perf_evsel *evsel;
572
573 inject->tool.context_switch = perf_event__drop;
574
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300575 evlist__for_each_entry(evlist, evsel)
Adrian Hunterf56fb982015-09-25 16:15:55 +0300576 evsel->handler = drop_sample;
577}
578
579static bool has_tracking(struct perf_evsel *evsel)
580{
581 return evsel->attr.mmap || evsel->attr.mmap2 || evsel->attr.comm ||
582 evsel->attr.task;
583}
584
585#define COMPAT_MASK (PERF_SAMPLE_ID | PERF_SAMPLE_TID | PERF_SAMPLE_TIME | \
586 PERF_SAMPLE_ID | PERF_SAMPLE_CPU | PERF_SAMPLE_IDENTIFIER)
587
588/*
589 * In order that the perf.data file is parsable, tracking events like MMAP need
590 * their selected event to exist, except if there is only 1 selected event left
591 * and it has a compatible sample type.
592 */
593static bool ok_to_remove(struct perf_evlist *evlist,
594 struct perf_evsel *evsel_to_remove)
595{
596 struct perf_evsel *evsel;
597 int cnt = 0;
598 bool ok = false;
599
600 if (!has_tracking(evsel_to_remove))
601 return true;
602
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300603 evlist__for_each_entry(evlist, evsel) {
Adrian Hunterf56fb982015-09-25 16:15:55 +0300604 if (evsel->handler != drop_sample) {
605 cnt += 1;
606 if ((evsel->attr.sample_type & COMPAT_MASK) ==
607 (evsel_to_remove->attr.sample_type & COMPAT_MASK))
608 ok = true;
609 }
610 }
611
612 return ok && cnt == 1;
613}
614
615static void strip_fini(struct perf_inject *inject)
616{
617 struct perf_evlist *evlist = inject->session->evlist;
618 struct perf_evsel *evsel, *tmp;
619
620 /* Remove non-synthesized evsels if possible */
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300621 evlist__for_each_entry_safe(evlist, tmp, evsel) {
Adrian Hunterf56fb982015-09-25 16:15:55 +0300622 if (evsel->handler == drop_sample &&
623 ok_to_remove(evlist, evsel)) {
624 pr_debug("Deleting %s\n", perf_evsel__name(evsel));
625 perf_evlist__remove(evlist, evsel);
626 perf_evsel__delete(evsel);
627 }
628 }
629}
630
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300631static int __cmd_inject(struct perf_inject *inject)
Tom Zanussi454c4072010-05-01 01:41:20 -0500632{
Tom Zanussi454c4072010-05-01 01:41:20 -0500633 int ret = -EINVAL;
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900634 struct perf_session *session = inject->session;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100635 struct perf_data *data_out = &inject->output;
636 int fd = perf_data__fd(data_out);
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300637 u64 output_data_offset;
Tom Zanussi454c4072010-05-01 01:41:20 -0500638
639 signal(SIGINT, sig_handler);
640
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300641 if (inject->build_ids || inject->sched_stat ||
642 inject->itrace_synth_opts.set) {
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300643 inject->tool.mmap = perf_event__repipe_mmap;
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200644 inject->tool.mmap2 = perf_event__repipe_mmap2;
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300645 inject->tool.fork = perf_event__repipe_fork;
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300646 inject->tool.tracing_data = perf_event__repipe_tracing_data;
Tom Zanussi454c4072010-05-01 01:41:20 -0500647 }
648
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300649 output_data_offset = session->header.data_offset;
650
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400651 if (inject->build_ids) {
652 inject->tool.sample = perf_event__inject_buildid;
653 } else if (inject->sched_stat) {
Andrew Vagin26a031e2012-08-07 16:56:04 +0400654 struct perf_evsel *evsel;
655
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300656 evlist__for_each_entry(session->evlist, evsel) {
Andrew Vagin26a031e2012-08-07 16:56:04 +0400657 const char *name = perf_evsel__name(evsel);
658
659 if (!strcmp(name, "sched:sched_switch")) {
660 if (perf_evsel__check_stype(evsel, PERF_SAMPLE_TID, "TID"))
661 return -EINVAL;
662
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300663 evsel->handler = perf_inject__sched_switch;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400664 } else if (!strcmp(name, "sched:sched_process_exit"))
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300665 evsel->handler = perf_inject__sched_process_exit;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400666 else if (!strncmp(name, "sched:sched_stat_", 17))
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300667 evsel->handler = perf_inject__sched_stat;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400668 }
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300669 } else if (inject->itrace_synth_opts.set) {
670 session->itrace_synth_opts = &inject->itrace_synth_opts;
671 inject->itrace_synth_opts.inject = true;
672 inject->tool.comm = perf_event__repipe_comm;
Hari Bathinif3b36142017-03-08 02:11:43 +0530673 inject->tool.namespaces = perf_event__repipe_namespaces;
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300674 inject->tool.exit = perf_event__repipe_exit;
675 inject->tool.id_index = perf_event__repipe_id_index;
676 inject->tool.auxtrace_info = perf_event__process_auxtrace_info;
677 inject->tool.auxtrace = perf_event__process_auxtrace;
Adrian Hunter73117302015-09-25 16:15:54 +0300678 inject->tool.aux = perf_event__drop_aux;
679 inject->tool.itrace_start = perf_event__drop_aux,
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300680 inject->tool.ordered_events = true;
681 inject->tool.ordering_requires_timestamps = true;
682 /* Allow space in the header for new attributes */
683 output_data_offset = 4096;
Adrian Hunterf56fb982015-09-25 16:15:55 +0300684 if (inject->strip)
685 strip_init(inject);
Andrew Vagin26a031e2012-08-07 16:56:04 +0400686 }
687
Adrian Hunter99fa2982015-04-30 17:37:25 +0300688 if (!inject->itrace_synth_opts.set)
689 auxtrace_index__free(&session->auxtrace_index);
690
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100691 if (!data_out->is_pipe)
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300692 lseek(fd, output_data_offset, SEEK_SET);
Andrew Vagine558a5b2012-08-07 16:56:02 +0400693
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -0300694 ret = perf_session__process_events(session);
David Carrillo-Cisnerosbb8d5212017-04-10 13:14:26 -0700695 if (ret)
696 return ret;
Tom Zanussi454c4072010-05-01 01:41:20 -0500697
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100698 if (!data_out->is_pipe) {
Adrian Hunter640dad42016-03-07 16:44:38 -0300699 if (inject->build_ids)
Adrian Huntere38b43c2014-07-14 13:02:34 +0300700 perf_header__set_feat(&session->header,
701 HEADER_BUILD_ID);
Adrian Hunter640dad42016-03-07 16:44:38 -0300702 /*
703 * Keep all buildids when there is unprocessed AUX data because
704 * it is not known which ones the AUX trace hits.
705 */
706 if (perf_header__has_feat(&session->header, HEADER_BUILD_ID) &&
707 inject->have_auxtrace && !inject->itrace_synth_opts.set)
708 dsos__hit_all(session);
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300709 /*
710 * The AUX areas have been removed and replaced with
Adrian Hunter73117302015-09-25 16:15:54 +0300711 * synthesized hardware events, so clear the feature flag and
712 * remove the evsel.
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300713 */
Adrian Hunter051a01b2015-09-25 16:15:43 +0300714 if (inject->itrace_synth_opts.set) {
Adrian Hunter73117302015-09-25 16:15:54 +0300715 struct perf_evsel *evsel;
716
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300717 perf_header__clear_feat(&session->header,
718 HEADER_AUXTRACE);
Adrian Hunter051a01b2015-09-25 16:15:43 +0300719 if (inject->itrace_synth_opts.last_branch)
720 perf_header__set_feat(&session->header,
721 HEADER_BRANCH_STACK);
Adrian Hunter73117302015-09-25 16:15:54 +0300722 evsel = perf_evlist__id2evsel_strict(session->evlist,
723 inject->aux_id);
724 if (evsel) {
725 pr_debug("Deleting %s\n",
726 perf_evsel__name(evsel));
727 perf_evlist__remove(session->evlist, evsel);
728 perf_evsel__delete(evsel);
729 }
Adrian Hunterf56fb982015-09-25 16:15:55 +0300730 if (inject->strip)
731 strip_fini(inject);
Adrian Hunter051a01b2015-09-25 16:15:43 +0300732 }
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300733 session->header.data_offset = output_data_offset;
Andrew Vagine558a5b2012-08-07 16:56:02 +0400734 session->header.data_size = inject->bytes_written;
Namhyung Kim42aa2762015-01-29 17:06:48 +0900735 perf_session__write_header(session, session->evlist, fd, true);
Andrew Vagine558a5b2012-08-07 16:56:02 +0400736 }
737
Tom Zanussi454c4072010-05-01 01:41:20 -0500738 return ret;
739}
740
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -0300741int cmd_inject(int argc, const char **argv)
Tom Zanussi454c4072010-05-01 01:41:20 -0500742{
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300743 struct perf_inject inject = {
744 .tool = {
745 .sample = perf_event__repipe_sample,
746 .mmap = perf_event__repipe,
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200747 .mmap2 = perf_event__repipe,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300748 .comm = perf_event__repipe,
749 .fork = perf_event__repipe,
750 .exit = perf_event__repipe,
751 .lost = perf_event__repipe,
Adrian Hunterd8145b32015-11-13 11:48:32 +0200752 .lost_samples = perf_event__repipe,
Adrian Hunter4a96f7a2015-04-30 17:37:29 +0300753 .aux = perf_event__repipe,
Adrian Hunter0ad21f62015-04-30 17:37:30 +0300754 .itrace_start = perf_event__repipe,
Adrian Hunter02860392015-07-21 12:44:03 +0300755 .context_switch = perf_event__repipe,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300756 .read = perf_event__repipe_sample,
757 .throttle = perf_event__repipe,
758 .unthrottle = perf_event__repipe,
759 .attr = perf_event__repipe_attr,
Adrian Hunter47c3d102013-07-04 16:20:21 +0300760 .tracing_data = perf_event__repipe_op2_synth,
Adrian Huntercd17a9b2015-04-21 12:21:54 +0300761 .auxtrace_info = perf_event__repipe_op2_synth,
762 .auxtrace = perf_event__repipe_auxtrace,
763 .auxtrace_error = perf_event__repipe_op2_synth,
Adrian Hunter46bc29b2016-03-08 10:38:44 +0200764 .time_conv = perf_event__repipe_op2_synth,
Arnaldo Carvalho de Melod704ebd2015-03-03 12:37:54 -0300765 .finished_round = perf_event__repipe_oe_synth,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300766 .build_id = perf_event__repipe_op2_synth,
Adrian Hunter3c659ee2014-10-27 15:49:22 +0200767 .id_index = perf_event__repipe_op2_synth,
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -0700768 .feature = perf_event__repipe_op2_synth,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300769 },
Andrew Vagine558a5b2012-08-07 16:56:02 +0400770 .input_name = "-",
Andrew Vagin26a031e2012-08-07 16:56:04 +0400771 .samples = LIST_HEAD_INIT(inject.samples),
Jiri Olsa34069122013-10-29 19:04:57 +0100772 .output = {
Jiri Olsa2d4f2792019-02-21 10:41:30 +0100773 .path = "-",
774 .mode = PERF_DATA_MODE_WRITE,
Jiri Olsa34069122013-10-29 19:04:57 +0100775 },
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300776 };
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100777 struct perf_data data = {
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900778 .mode = PERF_DATA_MODE_READ,
779 };
780 int ret;
781
Stephane Eranian9b07e272015-11-30 10:02:21 +0100782 struct option options[] = {
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300783 OPT_BOOLEAN('b', "build-ids", &inject.build_ids,
784 "Inject build-ids into the output stream"),
Andrew Vagine558a5b2012-08-07 16:56:02 +0400785 OPT_STRING('i', "input", &inject.input_name, "file",
786 "input file name"),
Jiri Olsa2d4f2792019-02-21 10:41:30 +0100787 OPT_STRING('o', "output", &inject.output.path, "file",
Andrew Vagine558a5b2012-08-07 16:56:02 +0400788 "output file name"),
Andrew Vagin26a031e2012-08-07 16:56:04 +0400789 OPT_BOOLEAN('s', "sched-stat", &inject.sched_stat,
790 "Merge sched-stat and sched-switch for getting events "
791 "where and how long tasks slept"),
Jiri Olsae12b2022016-03-10 17:41:13 +0100792#ifdef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +0100793 OPT_BOOLEAN('j', "jit", &inject.jit_mode, "merge jitdump files into perf.data file"),
Jiri Olsae12b2022016-03-10 17:41:13 +0100794#endif
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300795 OPT_INCR('v', "verbose", &verbose,
796 "be more verbose (show build ids, etc)"),
Adrian Huntera7a2b8b2014-07-22 16:17:38 +0300797 OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name, "file",
798 "kallsyms pathname"),
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100799 OPT_BOOLEAN('f', "force", &data.force, "don't complain, do it"),
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300800 OPT_CALLBACK_OPTARG(0, "itrace", &inject.itrace_synth_opts,
Andi Kleenc12e0392018-09-13 20:10:31 -0700801 NULL, "opts", "Instruction Tracing options\n"
802 ITRACE_HELP,
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300803 itrace_parse_synth_opts),
Adrian Hunterf56fb982015-09-25 16:15:55 +0300804 OPT_BOOLEAN(0, "strip", &inject.strip,
805 "strip non-synthesized events (use with --itrace)"),
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300806 OPT_END()
807 };
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300808 const char * const inject_usage[] = {
809 "perf inject [<options>]",
810 NULL
811 };
Jiri Olsae12b2022016-03-10 17:41:13 +0100812#ifndef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +0100813 set_option_nobuild(options, 'j', "jit", "NO_LIBELF=1", true);
814#endif
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300815 argc = parse_options(argc, argv, options, inject_usage, 0);
Tom Zanussi454c4072010-05-01 01:41:20 -0500816
817 /*
818 * Any (unrecognized) arguments left?
819 */
820 if (argc)
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300821 usage_with_options(inject_usage, options);
Tom Zanussi454c4072010-05-01 01:41:20 -0500822
Adrian Hunterf56fb982015-09-25 16:15:55 +0300823 if (inject.strip && !inject.itrace_synth_opts.set) {
824 pr_err("--strip option requires --itrace option\n");
825 return -1;
826 }
827
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100828 if (perf_data__open(&inject.output)) {
Jiri Olsa34069122013-10-29 19:04:57 +0100829 perror("failed to create output file");
830 return -1;
Andrew Vagine558a5b2012-08-07 16:56:02 +0400831 }
832
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -0300833 inject.tool.ordered_events = inject.sched_stat;
834
Jiri Olsa2d4f2792019-02-21 10:41:30 +0100835 data.path = inject.input_name;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100836 inject.session = perf_session__new(&data, true, &inject.tool);
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900837 if (inject.session == NULL)
Taeung Song52e028342014-09-24 10:33:37 +0900838 return -1;
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900839
Arnaldo Carvalho de Melo921f3fa2016-01-22 18:41:00 -0300840 if (inject.build_ids) {
841 /*
842 * to make sure the mmap records are ordered correctly
843 * and so that the correct especially due to jitted code
844 * mmaps. We cannot generate the buildid hit list and
845 * inject the jit mmaps at the same time for now.
846 */
847 inject.tool.ordered_events = true;
848 inject.tool.ordering_requires_timestamps = true;
849 }
Jiri Olsae12b2022016-03-10 17:41:13 +0100850#ifdef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +0100851 if (inject.jit_mode) {
Stephane Eranian9b07e272015-11-30 10:02:21 +0100852 inject.tool.mmap2 = perf_event__jit_repipe_mmap2;
853 inject.tool.mmap = perf_event__jit_repipe_mmap;
854 inject.tool.ordered_events = true;
855 inject.tool.ordering_requires_timestamps = true;
856 /*
857 * JIT MMAP injection injects all MMAP events in one go, so it
858 * does not obey finished_round semantics.
859 */
860 inject.tool.finished_round = perf_event__drop_oe;
861 }
862#endif
Taeung Song9fedfb02015-06-30 17:15:20 +0900863 ret = symbol__init(&inject.session->header.env);
864 if (ret < 0)
865 goto out_delete;
Tom Zanussi454c4072010-05-01 01:41:20 -0500866
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900867 ret = __cmd_inject(&inject);
868
Taeung Song9fedfb02015-06-30 17:15:20 +0900869out_delete:
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900870 perf_session__delete(inject.session);
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900871 return ret;
Tom Zanussi454c4072010-05-01 01:41:20 -0500872}