blob: 248cd9f3e5bbc0b8c635f26ac9668b622e94bd97 [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
Andrew Vagin26a031e2012-08-07 16:56:04 +040011#include "util/color.h"
Arnaldo Carvalho de Melo4a3cec82019-08-30 11:11:01 -030012#include "util/dso.h"
Andrew Vagin26a031e2012-08-07 16:56:04 +040013#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 Meloea49e012019-09-18 11:36:13 -030024#include "util/synthetic-events.h"
Arnaldo Carvalho de Meloe7ff8922017-04-19 21:34:35 -030025#include "util/thread.h"
Namhyung Kim336c95b2020-10-12 16:02:11 +090026#include "util/namespaces.h"
Tom Zanussi454c4072010-05-01 01:41:20 -050027
Namhyung Kime7b60c52020-10-12 16:02:12 +090028#include <linux/err.h>
Josh Poimboeuf4b6ab942015-12-15 09:39:39 -060029#include <subcmd/parse-options.h>
Namhyung Kime7b60c52020-10-12 16:02:12 +090030#include <uapi/linux/mman.h> /* To get things like MAP_HUGETLB even on older libc headers */
Tom Zanussi454c4072010-05-01 01:41:20 -050031
Andrew Vagin26a031e2012-08-07 16:56:04 +040032#include <linux/list.h>
Arnaldo Carvalho de Meloa43783a2017-04-18 10:46:11 -030033#include <errno.h>
Arnaldo Carvalho de Melo9607ad32017-04-19 15:49:18 -030034#include <signal.h>
Andrew Vagin26a031e2012-08-07 16:56:04 +040035
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -030036struct perf_inject {
Jiri Olsa34069122013-10-29 19:04:57 +010037 struct perf_tool tool;
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +090038 struct perf_session *session;
Jiri Olsa34069122013-10-29 19:04:57 +010039 bool build_ids;
40 bool sched_stat;
Adrian Huntercd10b282015-04-30 17:37:26 +030041 bool have_auxtrace;
Adrian Hunterf56fb982015-09-25 16:15:55 +030042 bool strip;
Stephane Eranian9b07e272015-11-30 10:02:21 +010043 bool jit_mode;
Jiri Olsa34069122013-10-29 19:04:57 +010044 const char *input_name;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +010045 struct perf_data output;
Jiri Olsa34069122013-10-29 19:04:57 +010046 u64 bytes_written;
Adrian Hunter73117302015-09-25 16:15:54 +030047 u64 aux_id;
Jiri Olsa34069122013-10-29 19:04:57 +010048 struct list_head samples;
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +030049 struct itrace_synth_opts itrace_synth_opts;
Adrian Hunterba2675b2019-11-15 14:42:18 +020050 char event_copy[PERF_SAMPLE_MAX_SIZE];
Andrew Vagin26a031e2012-08-07 16:56:04 +040051};
52
53struct event_entry {
54 struct list_head node;
55 u32 tid;
Gustavo A. R. Silva6549a8c2020-05-15 12:29:26 -050056 union perf_event event[];
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -030057};
Tom Zanussi454c4072010-05-01 01:41:20 -050058
Adrian Huntercd17a9b2015-04-21 12:21:54 +030059static int output_bytes(struct perf_inject *inject, void *buf, size_t sz)
Tom Zanussi454c4072010-05-01 01:41:20 -050060{
Jiri Olsa34069122013-10-29 19:04:57 +010061 ssize_t size;
Tom Zanussi454c4072010-05-01 01:41:20 -050062
Jiri Olsa8ceb41d2017-01-23 22:07:59 +010063 size = perf_data__write(&inject->output, buf, sz);
Jiri Olsa34069122013-10-29 19:04:57 +010064 if (size < 0)
65 return -errno;
Tom Zanussi454c4072010-05-01 01:41:20 -050066
Jiri Olsa34069122013-10-29 19:04:57 +010067 inject->bytes_written += size;
Tom Zanussi454c4072010-05-01 01:41:20 -050068 return 0;
69}
70
Adrian Huntercd17a9b2015-04-21 12:21:54 +030071static int perf_event__repipe_synth(struct perf_tool *tool,
72 union perf_event *event)
73{
74 struct perf_inject *inject = container_of(tool, struct perf_inject,
75 tool);
76
77 return output_bytes(inject, event, event->header.size);
78}
79
Arnaldo Carvalho de Melod704ebd2015-03-03 12:37:54 -030080static int perf_event__repipe_oe_synth(struct perf_tool *tool,
81 union perf_event *event,
82 struct ordered_events *oe __maybe_unused)
83{
84 return perf_event__repipe_synth(tool, event);
85}
86
Jiri Olsae12b2022016-03-10 17:41:13 +010087#ifdef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +010088static int perf_event__drop_oe(struct perf_tool *tool __maybe_unused,
89 union perf_event *event __maybe_unused,
90 struct ordered_events *oe __maybe_unused)
91{
92 return 0;
93}
94#endif
95
Jiri Olsa89f16882018-09-13 14:54:03 +020096static int perf_event__repipe_op2_synth(struct perf_session *session,
97 union perf_event *event)
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -020098{
Jiri Olsa89f16882018-09-13 14:54:03 +020099 return perf_event__repipe_synth(session->tool, event);
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200100}
101
Namhyung Kim2946ece2020-10-12 16:02:10 +0900102static int perf_event__repipe_op4_synth(struct perf_session *session,
103 union perf_event *event,
104 u64 data __maybe_unused)
105{
106 return perf_event__repipe_synth(session->tool, event);
107}
108
Adrian Hunter47c3d102013-07-04 16:20:21 +0300109static int perf_event__repipe_attr(struct perf_tool *tool,
110 union perf_event *event,
Jiri Olsa63503db2019-07-21 13:23:52 +0200111 struct evlist **pevlist)
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -0200112{
Adrian Hunter89c97d92013-10-22 10:34:09 +0300113 struct perf_inject *inject = container_of(tool, struct perf_inject,
114 tool);
Stephane Eranian1a1ed1b2012-05-15 13:28:11 +0200115 int ret;
Adrian Hunter47c3d102013-07-04 16:20:21 +0300116
117 ret = perf_event__process_attr(tool, event, pevlist);
Stephane Eranian1a1ed1b2012-05-15 13:28:11 +0200118 if (ret)
119 return ret;
120
Jiri Olsaa261e4a2014-06-05 18:51:44 +0200121 if (!inject->output.is_pipe)
Adrian Hunter89c97d92013-10-22 10:34:09 +0300122 return 0;
123
Adrian Hunter47c3d102013-07-04 16:20:21 +0300124 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -0200125}
126
Namhyung Kim2946ece2020-10-12 16:02:10 +0900127static int perf_event__repipe_event_update(struct perf_tool *tool,
128 union perf_event *event,
129 struct evlist **pevlist __maybe_unused)
130{
131 return perf_event__repipe_synth(tool, event);
132}
133
Adrian Huntere31f0d02015-04-30 17:37:27 +0300134#ifdef HAVE_AUXTRACE_SUPPORT
135
136static int copy_bytes(struct perf_inject *inject, int fd, off_t size)
137{
138 char buf[4096];
139 ssize_t ssz;
140 int ret;
141
142 while (size > 0) {
143 ssz = read(fd, buf, min(size, (off_t)sizeof(buf)));
144 if (ssz < 0)
145 return -errno;
146 ret = output_bytes(inject, buf, ssz);
147 if (ret)
148 return ret;
149 size -= ssz;
150 }
151
152 return 0;
153}
154
Jiri Olsa73365552018-09-13 14:54:04 +0200155static s64 perf_event__repipe_auxtrace(struct perf_session *session,
156 union perf_event *event)
Adrian Huntercd17a9b2015-04-21 12:21:54 +0300157{
Jiri Olsa73365552018-09-13 14:54:04 +0200158 struct perf_tool *tool = session->tool;
Adrian Huntercd17a9b2015-04-21 12:21:54 +0300159 struct perf_inject *inject = container_of(tool, struct perf_inject,
160 tool);
161 int ret;
162
Adrian Huntercd10b282015-04-30 17:37:26 +0300163 inject->have_auxtrace = true;
164
Adrian Hunter99fa2982015-04-30 17:37:25 +0300165 if (!inject->output.is_pipe) {
166 off_t offset;
167
Jiri Olsaeae8ad82017-01-23 22:25:41 +0100168 offset = lseek(inject->output.file.fd, 0, SEEK_CUR);
Adrian Hunter99fa2982015-04-30 17:37:25 +0300169 if (offset == -1)
170 return -errno;
171 ret = auxtrace_index__auxtrace_event(&session->auxtrace_index,
172 event, offset);
173 if (ret < 0)
174 return ret;
175 }
176
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100177 if (perf_data__is_pipe(session->data) || !session->one_mmap) {
Adrian Huntercd17a9b2015-04-21 12:21:54 +0300178 ret = output_bytes(inject, event, event->header.size);
179 if (ret < 0)
180 return ret;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100181 ret = copy_bytes(inject, perf_data__fd(session->data),
Adrian Huntercd17a9b2015-04-21 12:21:54 +0300182 event->auxtrace.size);
183 } else {
184 ret = output_bytes(inject, event,
185 event->header.size + event->auxtrace.size);
186 }
187 if (ret < 0)
188 return ret;
189
190 return event->auxtrace.size;
191}
192
Adrian Huntere31f0d02015-04-30 17:37:27 +0300193#else
194
195static s64
Jiri Olsa73365552018-09-13 14:54:04 +0200196perf_event__repipe_auxtrace(struct perf_session *session __maybe_unused,
197 union perf_event *event __maybe_unused)
Adrian Huntere31f0d02015-04-30 17:37:27 +0300198{
199 pr_err("AUX area tracing not supported\n");
200 return -EINVAL;
201}
202
203#endif
204
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200205static int perf_event__repipe(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200206 union perf_event *event,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300207 struct perf_sample *sample __maybe_unused,
Adrian Hunter63c2c9f2013-07-04 16:20:20 +0300208 struct machine *machine __maybe_unused)
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -0200209{
Adrian Hunter63c2c9f2013-07-04 16:20:20 +0300210 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -0200211}
212
Adrian Hunterf56fb982015-09-25 16:15:55 +0300213static int perf_event__drop(struct perf_tool *tool __maybe_unused,
214 union perf_event *event __maybe_unused,
215 struct perf_sample *sample __maybe_unused,
216 struct machine *machine __maybe_unused)
217{
218 return 0;
219}
220
Adrian Hunter73117302015-09-25 16:15:54 +0300221static int perf_event__drop_aux(struct perf_tool *tool,
222 union perf_event *event __maybe_unused,
223 struct perf_sample *sample,
224 struct machine *machine __maybe_unused)
225{
226 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
227
228 if (!inject->aux_id)
229 inject->aux_id = sample->id;
230
231 return 0;
232}
233
Adrian Hunterba2675b2019-11-15 14:42:18 +0200234static union perf_event *
235perf_inject__cut_auxtrace_sample(struct perf_inject *inject,
236 union perf_event *event,
237 struct perf_sample *sample)
238{
239 size_t sz1 = sample->aux_sample.data - (void *)event;
240 size_t sz2 = event->header.size - sample->aux_sample.size - sz1;
241 union perf_event *ev = (union perf_event *)inject->event_copy;
242
243 if (sz1 > event->header.size || sz2 > event->header.size ||
244 sz1 + sz2 > event->header.size ||
245 sz1 < sizeof(struct perf_event_header) + sizeof(u64))
246 return event;
247
248 memcpy(ev, event, sz1);
249 memcpy((void *)ev + sz1, (void *)event + event->header.size - sz2, sz2);
250 ev->header.size = sz1 + sz2;
251 ((u64 *)((void *)ev + sz1))[-1] = 0;
252
253 return ev;
254}
255
Andrew Vagin26a031e2012-08-07 16:56:04 +0400256typedef int (*inject_handler)(struct perf_tool *tool,
257 union perf_event *event,
258 struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200259 struct evsel *evsel,
Andrew Vagin26a031e2012-08-07 16:56:04 +0400260 struct machine *machine);
261
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200262static int perf_event__repipe_sample(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200263 union perf_event *event,
Andrew Vagin26a031e2012-08-07 16:56:04 +0400264 struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200265 struct evsel *evsel,
Andrew Vagin26a031e2012-08-07 16:56:04 +0400266 struct machine *machine)
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300267{
Adrian Hunterba2675b2019-11-15 14:42:18 +0200268 struct perf_inject *inject = container_of(tool, struct perf_inject,
269 tool);
270
Arnaldo Carvalho de Melo40978e92019-07-03 16:02:09 -0300271 if (evsel && evsel->handler) {
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300272 inject_handler f = evsel->handler;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400273 return f(tool, event, sample, evsel, machine);
274 }
275
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400276 build_id__mark_dso_hit(tool, event, sample, evsel, machine);
277
Adrian Hunterba2675b2019-11-15 14:42:18 +0200278 if (inject->itrace_synth_opts.set && sample->aux_sample.size)
279 event = perf_inject__cut_auxtrace_sample(inject, event, sample);
280
Adrian Hunter63c2c9f2013-07-04 16:20:20 +0300281 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300282}
283
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200284static int perf_event__repipe_mmap(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200285 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200286 struct perf_sample *sample,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200287 struct machine *machine)
Tom Zanussi454c4072010-05-01 01:41:20 -0500288{
289 int err;
290
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200291 err = perf_event__process_mmap(tool, event, sample, machine);
292 perf_event__repipe(tool, event, sample, machine);
Tom Zanussi454c4072010-05-01 01:41:20 -0500293
294 return err;
295}
296
Jiri Olsae12b2022016-03-10 17:41:13 +0100297#ifdef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +0100298static int perf_event__jit_repipe_mmap(struct perf_tool *tool,
299 union perf_event *event,
300 struct perf_sample *sample,
301 struct machine *machine)
302{
303 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
304 u64 n = 0;
Adrian Hunter570735b2016-03-07 16:44:40 -0300305 int ret;
Stephane Eranian9b07e272015-11-30 10:02:21 +0100306
307 /*
308 * if jit marker, then inject jit mmaps and generate ELF images
309 */
Adrian Hunter570735b2016-03-07 16:44:40 -0300310 ret = jit_process(inject->session, &inject->output, machine,
Steve MacLeanc8f6ae12020-05-26 18:51:11 -0700311 event->mmap.filename, event->mmap.pid, &n);
Adrian Hunter570735b2016-03-07 16:44:40 -0300312 if (ret < 0)
313 return ret;
314 if (ret) {
Stephane Eranian9b07e272015-11-30 10:02:21 +0100315 inject->bytes_written += n;
316 return 0;
317 }
318 return perf_event__repipe_mmap(tool, event, sample, machine);
319}
320#endif
321
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200322static int perf_event__repipe_mmap2(struct perf_tool *tool,
323 union perf_event *event,
324 struct perf_sample *sample,
325 struct machine *machine)
326{
327 int err;
328
329 err = perf_event__process_mmap2(tool, event, sample, machine);
330 perf_event__repipe(tool, event, sample, machine);
331
332 return err;
333}
334
Jiri Olsae12b2022016-03-10 17:41:13 +0100335#ifdef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +0100336static int perf_event__jit_repipe_mmap2(struct perf_tool *tool,
337 union perf_event *event,
338 struct perf_sample *sample,
339 struct machine *machine)
340{
341 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
342 u64 n = 0;
Adrian Hunter570735b2016-03-07 16:44:40 -0300343 int ret;
Stephane Eranian9b07e272015-11-30 10:02:21 +0100344
345 /*
346 * if jit marker, then inject jit mmaps and generate ELF images
347 */
Adrian Hunter570735b2016-03-07 16:44:40 -0300348 ret = jit_process(inject->session, &inject->output, machine,
Steve MacLeanc8f6ae12020-05-26 18:51:11 -0700349 event->mmap2.filename, event->mmap2.pid, &n);
Adrian Hunter570735b2016-03-07 16:44:40 -0300350 if (ret < 0)
351 return ret;
352 if (ret) {
Stephane Eranian9b07e272015-11-30 10:02:21 +0100353 inject->bytes_written += n;
354 return 0;
355 }
356 return perf_event__repipe_mmap2(tool, event, sample, machine);
357}
358#endif
359
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300360static int perf_event__repipe_fork(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200361 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200362 struct perf_sample *sample,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200363 struct machine *machine)
Tom Zanussi454c4072010-05-01 01:41:20 -0500364{
365 int err;
366
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300367 err = perf_event__process_fork(tool, event, sample, machine);
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200368 perf_event__repipe(tool, event, sample, machine);
Tom Zanussi454c4072010-05-01 01:41:20 -0500369
370 return err;
371}
372
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300373static int perf_event__repipe_comm(struct perf_tool *tool,
374 union perf_event *event,
375 struct perf_sample *sample,
376 struct machine *machine)
377{
378 int err;
379
380 err = perf_event__process_comm(tool, event, sample, machine);
381 perf_event__repipe(tool, event, sample, machine);
382
383 return err;
384}
385
Hari Bathinif3b36142017-03-08 02:11:43 +0530386static int perf_event__repipe_namespaces(struct perf_tool *tool,
387 union perf_event *event,
388 struct perf_sample *sample,
389 struct machine *machine)
390{
391 int err = perf_event__process_namespaces(tool, event, sample, machine);
392
393 perf_event__repipe(tool, event, sample, machine);
394
395 return err;
396}
397
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300398static int perf_event__repipe_exit(struct perf_tool *tool,
399 union perf_event *event,
400 struct perf_sample *sample,
401 struct machine *machine)
402{
403 int err;
404
405 err = perf_event__process_exit(tool, event, sample, machine);
406 perf_event__repipe(tool, event, sample, machine);
407
408 return err;
409}
410
Jiri Olsa89f16882018-09-13 14:54:03 +0200411static int perf_event__repipe_tracing_data(struct perf_session *session,
412 union perf_event *event)
Tom Zanussi454c4072010-05-01 01:41:20 -0500413{
414 int err;
415
Jiri Olsa89f16882018-09-13 14:54:03 +0200416 perf_event__repipe_synth(session->tool, event);
417 err = perf_event__process_tracing_data(session, event);
Tom Zanussi454c4072010-05-01 01:41:20 -0500418
419 return err;
420}
421
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300422static int dso__read_build_id(struct dso *dso)
Tom Zanussi454c4072010-05-01 01:41:20 -0500423{
Namhyung Kim336c95b2020-10-12 16:02:11 +0900424 struct nscookie nsc;
425
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300426 if (dso->has_build_id)
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300427 return 0;
Tom Zanussi454c4072010-05-01 01:41:20 -0500428
Namhyung Kim336c95b2020-10-12 16:02:11 +0900429 nsinfo__mountns_enter(dso->nsinfo, &nsc);
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300430 if (filename__read_build_id(dso->long_name, dso->build_id,
431 sizeof(dso->build_id)) > 0) {
432 dso->has_build_id = true;
Tom Zanussi454c4072010-05-01 01:41:20 -0500433 }
Namhyung Kim336c95b2020-10-12 16:02:11 +0900434 nsinfo__mountns_exit(&nsc);
Tom Zanussi454c4072010-05-01 01:41:20 -0500435
Namhyung Kim336c95b2020-10-12 16:02:11 +0900436 return dso->has_build_id ? 0 : -1;
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300437}
Tom Zanussi454c4072010-05-01 01:41:20 -0500438
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300439static int dso__inject_build_id(struct dso *dso, struct perf_tool *tool,
Namhyung Kime7b60c52020-10-12 16:02:12 +0900440 struct machine *machine, u8 cpumode, u32 flags)
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300441{
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300442 int err;
Tom Zanussi454c4072010-05-01 01:41:20 -0500443
Namhyung Kime7b60c52020-10-12 16:02:12 +0900444 if (is_anon_memory(dso->long_name) || flags & MAP_HUGETLB)
445 return 0;
446 if (is_no_dso_memory(dso->long_name))
447 return 0;
448
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300449 if (dso__read_build_id(dso) < 0) {
450 pr_debug("no build_id found for %s\n", dso->long_name);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300451 return -1;
452 }
Tom Zanussi454c4072010-05-01 01:41:20 -0500453
Namhyung Kime7b60c52020-10-12 16:02:12 +0900454 err = perf_event__synthesize_build_id(tool, dso, cpumode,
455 perf_event__repipe, machine);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300456 if (err) {
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300457 pr_err("Can't synthesize build_id event for %s\n", dso->long_name);
Tom Zanussi454c4072010-05-01 01:41:20 -0500458 return -1;
459 }
460
461 return 0;
462}
463
Namhyung Kim0bf02a02020-10-12 16:02:09 +0900464int perf_event__inject_buildid(struct perf_tool *tool, union perf_event *event,
465 struct perf_sample *sample,
466 struct evsel *evsel __maybe_unused,
467 struct machine *machine)
Tom Zanussi454c4072010-05-01 01:41:20 -0500468{
469 struct addr_location al;
470 struct thread *thread;
Tom Zanussi454c4072010-05-01 01:41:20 -0500471
Namhyung Kim13ce34d2014-05-12 09:56:42 +0900472 thread = machine__findnew_thread(machine, sample->pid, sample->tid);
Tom Zanussi454c4072010-05-01 01:41:20 -0500473 if (thread == NULL) {
474 pr_err("problem processing %d event, skipping it.\n",
475 event->header.type);
Tom Zanussi454c4072010-05-01 01:41:20 -0500476 goto repipe;
477 }
478
Arnaldo Carvalho de Melo71a84b52018-04-24 11:58:56 -0300479 if (thread__find_map(thread, sample->cpumode, sample->ip, &al)) {
Tom Zanussi454c4072010-05-01 01:41:20 -0500480 if (!al.map->dso->hit) {
481 al.map->dso->hit = 1;
Namhyung Kime7b60c52020-10-12 16:02:12 +0900482 dso__inject_build_id(al.map->dso, tool, machine,
483 sample->cpumode, al.map->flags);
Tom Zanussi454c4072010-05-01 01:41:20 -0500484 }
485 }
486
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300487 thread__put(thread);
Tom Zanussi454c4072010-05-01 01:41:20 -0500488repipe:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200489 perf_event__repipe(tool, event, sample, machine);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300490 return 0;
Tom Zanussi454c4072010-05-01 01:41:20 -0500491}
492
Andrew Vagin26a031e2012-08-07 16:56:04 +0400493static int perf_inject__sched_process_exit(struct perf_tool *tool,
494 union perf_event *event __maybe_unused,
495 struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200496 struct evsel *evsel __maybe_unused,
Andrew Vagin26a031e2012-08-07 16:56:04 +0400497 struct machine *machine __maybe_unused)
498{
499 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
500 struct event_entry *ent;
501
502 list_for_each_entry(ent, &inject->samples, node) {
503 if (sample->tid == ent->tid) {
504 list_del_init(&ent->node);
505 free(ent);
506 break;
507 }
508 }
509
510 return 0;
511}
512
513static int perf_inject__sched_switch(struct perf_tool *tool,
514 union perf_event *event,
515 struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200516 struct evsel *evsel,
Andrew Vagin26a031e2012-08-07 16:56:04 +0400517 struct machine *machine)
518{
519 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
520 struct event_entry *ent;
521
522 perf_inject__sched_process_exit(tool, event, sample, evsel, machine);
523
524 ent = malloc(event->header.size + sizeof(struct event_entry));
525 if (ent == NULL) {
526 color_fprintf(stderr, PERF_COLOR_RED,
527 "Not enough memory to process sched switch event!");
528 return -1;
529 }
530
531 ent->tid = sample->tid;
532 memcpy(&ent->event, event, event->header.size);
533 list_add(&ent->node, &inject->samples);
534 return 0;
535}
536
537static int perf_inject__sched_stat(struct perf_tool *tool,
538 union perf_event *event __maybe_unused,
539 struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200540 struct evsel *evsel,
Andrew Vagin26a031e2012-08-07 16:56:04 +0400541 struct machine *machine)
542{
543 struct event_entry *ent;
544 union perf_event *event_sw;
545 struct perf_sample sample_sw;
546 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
Arnaldo Carvalho de Meloefc0cdc2020-04-29 16:26:57 -0300547 u32 pid = evsel__intval(evsel, sample, "pid");
Andrew Vagin26a031e2012-08-07 16:56:04 +0400548
549 list_for_each_entry(ent, &inject->samples, node) {
550 if (pid == ent->tid)
551 goto found;
552 }
553
554 return 0;
555found:
556 event_sw = &ent->event[0];
Arnaldo Carvalho de Melo6b6017a2020-04-30 11:03:49 -0300557 evsel__parse_sample(evsel, event_sw, &sample_sw);
Andrew Vagin26a031e2012-08-07 16:56:04 +0400558
559 sample_sw.period = sample->period;
560 sample_sw.time = sample->time;
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200561 perf_event__synthesize_sample(event_sw, evsel->core.attr.sample_type,
562 evsel->core.attr.read_format, &sample_sw);
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400563 build_id__mark_dso_hit(tool, event_sw, &sample_sw, evsel, machine);
Andrew Vagin26a031e2012-08-07 16:56:04 +0400564 return perf_event__repipe(tool, event_sw, &sample_sw, machine);
565}
566
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300567static void sig_handler(int sig __maybe_unused)
Tom Zanussi454c4072010-05-01 01:41:20 -0500568{
569 session_done = 1;
570}
571
Arnaldo Carvalho de Melob14b36d2020-05-04 13:57:44 -0300572static int evsel__check_stype(struct evsel *evsel, u64 sample_type, const char *sample_msg)
Andrew Vagin26a031e2012-08-07 16:56:04 +0400573{
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200574 struct perf_event_attr *attr = &evsel->core.attr;
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -0300575 const char *name = evsel__name(evsel);
Andrew Vagin26a031e2012-08-07 16:56:04 +0400576
577 if (!(attr->sample_type & sample_type)) {
578 pr_err("Samples for %s event do not have %s attribute set.",
579 name, sample_msg);
580 return -EINVAL;
581 }
582
583 return 0;
584}
585
Adrian Hunterf56fb982015-09-25 16:15:55 +0300586static int drop_sample(struct perf_tool *tool __maybe_unused,
587 union perf_event *event __maybe_unused,
588 struct perf_sample *sample __maybe_unused,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200589 struct evsel *evsel __maybe_unused,
Adrian Hunterf56fb982015-09-25 16:15:55 +0300590 struct machine *machine __maybe_unused)
591{
592 return 0;
593}
594
595static void strip_init(struct perf_inject *inject)
596{
Jiri Olsa63503db2019-07-21 13:23:52 +0200597 struct evlist *evlist = inject->session->evlist;
Jiri Olsa32dcd022019-07-21 13:23:51 +0200598 struct evsel *evsel;
Adrian Hunterf56fb982015-09-25 16:15:55 +0300599
600 inject->tool.context_switch = perf_event__drop;
601
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300602 evlist__for_each_entry(evlist, evsel)
Adrian Hunterf56fb982015-09-25 16:15:55 +0300603 evsel->handler = drop_sample;
604}
605
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300606static int __cmd_inject(struct perf_inject *inject)
Tom Zanussi454c4072010-05-01 01:41:20 -0500607{
Tom Zanussi454c4072010-05-01 01:41:20 -0500608 int ret = -EINVAL;
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900609 struct perf_session *session = inject->session;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100610 struct perf_data *data_out = &inject->output;
611 int fd = perf_data__fd(data_out);
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300612 u64 output_data_offset;
Tom Zanussi454c4072010-05-01 01:41:20 -0500613
614 signal(SIGINT, sig_handler);
615
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300616 if (inject->build_ids || inject->sched_stat ||
617 inject->itrace_synth_opts.set) {
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300618 inject->tool.mmap = perf_event__repipe_mmap;
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200619 inject->tool.mmap2 = perf_event__repipe_mmap2;
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300620 inject->tool.fork = perf_event__repipe_fork;
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300621 inject->tool.tracing_data = perf_event__repipe_tracing_data;
Tom Zanussi454c4072010-05-01 01:41:20 -0500622 }
623
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300624 output_data_offset = session->header.data_offset;
625
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400626 if (inject->build_ids) {
627 inject->tool.sample = perf_event__inject_buildid;
628 } else if (inject->sched_stat) {
Jiri Olsa32dcd022019-07-21 13:23:51 +0200629 struct evsel *evsel;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400630
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300631 evlist__for_each_entry(session->evlist, evsel) {
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -0300632 const char *name = evsel__name(evsel);
Andrew Vagin26a031e2012-08-07 16:56:04 +0400633
634 if (!strcmp(name, "sched:sched_switch")) {
Arnaldo Carvalho de Melob14b36d2020-05-04 13:57:44 -0300635 if (evsel__check_stype(evsel, PERF_SAMPLE_TID, "TID"))
Andrew Vagin26a031e2012-08-07 16:56:04 +0400636 return -EINVAL;
637
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300638 evsel->handler = perf_inject__sched_switch;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400639 } else if (!strcmp(name, "sched:sched_process_exit"))
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300640 evsel->handler = perf_inject__sched_process_exit;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400641 else if (!strncmp(name, "sched:sched_stat_", 17))
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300642 evsel->handler = perf_inject__sched_stat;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400643 }
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300644 } else if (inject->itrace_synth_opts.set) {
645 session->itrace_synth_opts = &inject->itrace_synth_opts;
646 inject->itrace_synth_opts.inject = true;
647 inject->tool.comm = perf_event__repipe_comm;
Hari Bathinif3b36142017-03-08 02:11:43 +0530648 inject->tool.namespaces = perf_event__repipe_namespaces;
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300649 inject->tool.exit = perf_event__repipe_exit;
Adrian Hunter29f6eec2019-12-04 14:08:00 +0200650 inject->tool.id_index = perf_event__process_id_index;
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300651 inject->tool.auxtrace_info = perf_event__process_auxtrace_info;
652 inject->tool.auxtrace = perf_event__process_auxtrace;
Adrian Hunter73117302015-09-25 16:15:54 +0300653 inject->tool.aux = perf_event__drop_aux;
654 inject->tool.itrace_start = perf_event__drop_aux,
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300655 inject->tool.ordered_events = true;
656 inject->tool.ordering_requires_timestamps = true;
657 /* Allow space in the header for new attributes */
658 output_data_offset = 4096;
Adrian Hunterf56fb982015-09-25 16:15:55 +0300659 if (inject->strip)
660 strip_init(inject);
Andrew Vagin26a031e2012-08-07 16:56:04 +0400661 }
662
Adrian Hunter99fa2982015-04-30 17:37:25 +0300663 if (!inject->itrace_synth_opts.set)
664 auxtrace_index__free(&session->auxtrace_index);
665
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100666 if (!data_out->is_pipe)
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300667 lseek(fd, output_data_offset, SEEK_SET);
Andrew Vagine558a5b2012-08-07 16:56:02 +0400668
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -0300669 ret = perf_session__process_events(session);
David Carrillo-Cisnerosbb8d5212017-04-10 13:14:26 -0700670 if (ret)
671 return ret;
Tom Zanussi454c4072010-05-01 01:41:20 -0500672
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100673 if (!data_out->is_pipe) {
Adrian Hunter640dad42016-03-07 16:44:38 -0300674 if (inject->build_ids)
Adrian Huntere38b43c2014-07-14 13:02:34 +0300675 perf_header__set_feat(&session->header,
676 HEADER_BUILD_ID);
Adrian Hunter640dad42016-03-07 16:44:38 -0300677 /*
678 * Keep all buildids when there is unprocessed AUX data because
679 * it is not known which ones the AUX trace hits.
680 */
681 if (perf_header__has_feat(&session->header, HEADER_BUILD_ID) &&
682 inject->have_auxtrace && !inject->itrace_synth_opts.set)
683 dsos__hit_all(session);
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300684 /*
685 * The AUX areas have been removed and replaced with
Adrian Hunter73117302015-09-25 16:15:54 +0300686 * synthesized hardware events, so clear the feature flag and
687 * remove the evsel.
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300688 */
Adrian Hunter051a01b2015-09-25 16:15:43 +0300689 if (inject->itrace_synth_opts.set) {
Jiri Olsa32dcd022019-07-21 13:23:51 +0200690 struct evsel *evsel;
Adrian Hunter73117302015-09-25 16:15:54 +0300691
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300692 perf_header__clear_feat(&session->header,
693 HEADER_AUXTRACE);
Adrian Hunterec90e422020-04-29 18:07:46 +0300694 if (inject->itrace_synth_opts.last_branch ||
695 inject->itrace_synth_opts.add_last_branch)
Adrian Hunter051a01b2015-09-25 16:15:43 +0300696 perf_header__set_feat(&session->header,
697 HEADER_BRANCH_STACK);
Adrian Hunter73117302015-09-25 16:15:54 +0300698 evsel = perf_evlist__id2evsel_strict(session->evlist,
699 inject->aux_id);
700 if (evsel) {
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -0300701 pr_debug("Deleting %s\n", evsel__name(evsel));
Jiri Olsa16251022019-07-21 13:24:00 +0200702 evlist__remove(session->evlist, evsel);
Jiri Olsa5eb2dd22019-07-21 13:23:57 +0200703 evsel__delete(evsel);
Adrian Hunter73117302015-09-25 16:15:54 +0300704 }
Adrian Hunter051a01b2015-09-25 16:15:43 +0300705 }
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300706 session->header.data_offset = output_data_offset;
Andrew Vagine558a5b2012-08-07 16:56:02 +0400707 session->header.data_size = inject->bytes_written;
Namhyung Kim42aa2762015-01-29 17:06:48 +0900708 perf_session__write_header(session, session->evlist, fd, true);
Andrew Vagine558a5b2012-08-07 16:56:02 +0400709 }
710
Tom Zanussi454c4072010-05-01 01:41:20 -0500711 return ret;
712}
713
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -0300714int cmd_inject(int argc, const char **argv)
Tom Zanussi454c4072010-05-01 01:41:20 -0500715{
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300716 struct perf_inject inject = {
717 .tool = {
718 .sample = perf_event__repipe_sample,
Namhyung Kim2946ece2020-10-12 16:02:10 +0900719 .read = perf_event__repipe_sample,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300720 .mmap = perf_event__repipe,
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200721 .mmap2 = perf_event__repipe,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300722 .comm = perf_event__repipe,
Namhyung Kim2946ece2020-10-12 16:02:10 +0900723 .namespaces = perf_event__repipe,
724 .cgroup = perf_event__repipe,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300725 .fork = perf_event__repipe,
726 .exit = perf_event__repipe,
727 .lost = perf_event__repipe,
Adrian Hunterd8145b32015-11-13 11:48:32 +0200728 .lost_samples = perf_event__repipe,
Adrian Hunter4a96f7a2015-04-30 17:37:29 +0300729 .aux = perf_event__repipe,
Adrian Hunter0ad21f62015-04-30 17:37:30 +0300730 .itrace_start = perf_event__repipe,
Adrian Hunter02860392015-07-21 12:44:03 +0300731 .context_switch = perf_event__repipe,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300732 .throttle = perf_event__repipe,
733 .unthrottle = perf_event__repipe,
Namhyung Kim2946ece2020-10-12 16:02:10 +0900734 .ksymbol = perf_event__repipe,
735 .bpf = perf_event__repipe,
736 .text_poke = perf_event__repipe,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300737 .attr = perf_event__repipe_attr,
Namhyung Kim2946ece2020-10-12 16:02:10 +0900738 .event_update = perf_event__repipe_event_update,
Adrian Hunter47c3d102013-07-04 16:20:21 +0300739 .tracing_data = perf_event__repipe_op2_synth,
Arnaldo Carvalho de Melod704ebd2015-03-03 12:37:54 -0300740 .finished_round = perf_event__repipe_oe_synth,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300741 .build_id = perf_event__repipe_op2_synth,
Adrian Hunter3c659ee2014-10-27 15:49:22 +0200742 .id_index = perf_event__repipe_op2_synth,
Namhyung Kim2946ece2020-10-12 16:02:10 +0900743 .auxtrace_info = perf_event__repipe_op2_synth,
744 .auxtrace_error = perf_event__repipe_op2_synth,
745 .time_conv = perf_event__repipe_op2_synth,
746 .thread_map = perf_event__repipe_op2_synth,
747 .cpu_map = perf_event__repipe_op2_synth,
748 .stat_config = perf_event__repipe_op2_synth,
749 .stat = perf_event__repipe_op2_synth,
750 .stat_round = perf_event__repipe_op2_synth,
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -0700751 .feature = perf_event__repipe_op2_synth,
Namhyung Kim2946ece2020-10-12 16:02:10 +0900752 .compressed = perf_event__repipe_op4_synth,
753 .auxtrace = perf_event__repipe_auxtrace,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300754 },
Andrew Vagine558a5b2012-08-07 16:56:02 +0400755 .input_name = "-",
Andrew Vagin26a031e2012-08-07 16:56:04 +0400756 .samples = LIST_HEAD_INIT(inject.samples),
Jiri Olsa34069122013-10-29 19:04:57 +0100757 .output = {
Jiri Olsa2d4f2792019-02-21 10:41:30 +0100758 .path = "-",
759 .mode = PERF_DATA_MODE_WRITE,
Jiri Olsa34069122013-10-29 19:04:57 +0100760 },
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300761 };
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100762 struct perf_data data = {
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900763 .mode = PERF_DATA_MODE_READ,
764 };
765 int ret;
766
Stephane Eranian9b07e272015-11-30 10:02:21 +0100767 struct option options[] = {
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300768 OPT_BOOLEAN('b', "build-ids", &inject.build_ids,
769 "Inject build-ids into the output stream"),
Andrew Vagine558a5b2012-08-07 16:56:02 +0400770 OPT_STRING('i', "input", &inject.input_name, "file",
771 "input file name"),
Jiri Olsa2d4f2792019-02-21 10:41:30 +0100772 OPT_STRING('o', "output", &inject.output.path, "file",
Andrew Vagine558a5b2012-08-07 16:56:02 +0400773 "output file name"),
Andrew Vagin26a031e2012-08-07 16:56:04 +0400774 OPT_BOOLEAN('s', "sched-stat", &inject.sched_stat,
775 "Merge sched-stat and sched-switch for getting events "
776 "where and how long tasks slept"),
Jiri Olsae12b2022016-03-10 17:41:13 +0100777#ifdef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +0100778 OPT_BOOLEAN('j', "jit", &inject.jit_mode, "merge jitdump files into perf.data file"),
Jiri Olsae12b2022016-03-10 17:41:13 +0100779#endif
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300780 OPT_INCR('v', "verbose", &verbose,
781 "be more verbose (show build ids, etc)"),
Adrian Huntera7a2b8b2014-07-22 16:17:38 +0300782 OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name, "file",
783 "kallsyms pathname"),
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100784 OPT_BOOLEAN('f', "force", &data.force, "don't complain, do it"),
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300785 OPT_CALLBACK_OPTARG(0, "itrace", &inject.itrace_synth_opts,
Andi Kleenc12e0392018-09-13 20:10:31 -0700786 NULL, "opts", "Instruction Tracing options\n"
787 ITRACE_HELP,
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300788 itrace_parse_synth_opts),
Adrian Hunterf56fb982015-09-25 16:15:55 +0300789 OPT_BOOLEAN(0, "strip", &inject.strip,
790 "strip non-synthesized events (use with --itrace)"),
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300791 OPT_END()
792 };
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300793 const char * const inject_usage[] = {
794 "perf inject [<options>]",
795 NULL
796 };
Jiri Olsae12b2022016-03-10 17:41:13 +0100797#ifndef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +0100798 set_option_nobuild(options, 'j', "jit", "NO_LIBELF=1", true);
799#endif
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300800 argc = parse_options(argc, argv, options, inject_usage, 0);
Tom Zanussi454c4072010-05-01 01:41:20 -0500801
802 /*
803 * Any (unrecognized) arguments left?
804 */
805 if (argc)
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300806 usage_with_options(inject_usage, options);
Tom Zanussi454c4072010-05-01 01:41:20 -0500807
Adrian Hunterf56fb982015-09-25 16:15:55 +0300808 if (inject.strip && !inject.itrace_synth_opts.set) {
809 pr_err("--strip option requires --itrace option\n");
810 return -1;
811 }
812
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100813 if (perf_data__open(&inject.output)) {
Jiri Olsa34069122013-10-29 19:04:57 +0100814 perror("failed to create output file");
815 return -1;
Andrew Vagine558a5b2012-08-07 16:56:02 +0400816 }
817
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -0300818 inject.tool.ordered_events = inject.sched_stat;
819
Jiri Olsa2d4f2792019-02-21 10:41:30 +0100820 data.path = inject.input_name;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100821 inject.session = perf_session__new(&data, true, &inject.tool);
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +0530822 if (IS_ERR(inject.session))
823 return PTR_ERR(inject.session);
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900824
Alexey Budankov371a3372019-03-18 20:45:44 +0300825 if (zstd_init(&(inject.session->zstd_data), 0) < 0)
826 pr_warning("Decompression initialization failed.\n");
827
Arnaldo Carvalho de Melo921f3fa2016-01-22 18:41:00 -0300828 if (inject.build_ids) {
829 /*
830 * to make sure the mmap records are ordered correctly
831 * and so that the correct especially due to jitted code
832 * mmaps. We cannot generate the buildid hit list and
833 * inject the jit mmaps at the same time for now.
834 */
835 inject.tool.ordered_events = true;
836 inject.tool.ordering_requires_timestamps = true;
837 }
Jiri Olsae12b2022016-03-10 17:41:13 +0100838#ifdef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +0100839 if (inject.jit_mode) {
Stephane Eranian9b07e272015-11-30 10:02:21 +0100840 inject.tool.mmap2 = perf_event__jit_repipe_mmap2;
841 inject.tool.mmap = perf_event__jit_repipe_mmap;
842 inject.tool.ordered_events = true;
843 inject.tool.ordering_requires_timestamps = true;
844 /*
845 * JIT MMAP injection injects all MMAP events in one go, so it
846 * does not obey finished_round semantics.
847 */
848 inject.tool.finished_round = perf_event__drop_oe;
849 }
850#endif
Taeung Song9fedfb02015-06-30 17:15:20 +0900851 ret = symbol__init(&inject.session->header.env);
852 if (ret < 0)
853 goto out_delete;
Tom Zanussi454c4072010-05-01 01:41:20 -0500854
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900855 ret = __cmd_inject(&inject);
856
Taeung Song9fedfb02015-06-30 17:15:20 +0900857out_delete:
Alexey Budankov371a3372019-03-18 20:45:44 +0300858 zstd_fini(&(inject.session->zstd_data));
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900859 perf_session__delete(inject.session);
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900860 return ret;
Tom Zanussi454c4072010-05-01 01:41:20 -0500861}