blob: 2c5e23d73a8a08274614256ca6676f8ef01b6210 [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"
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +053026#include <linux/err.h>
Tom Zanussi454c4072010-05-01 01:41:20 -050027
Josh Poimboeuf4b6ab942015-12-15 09:39:39 -060028#include <subcmd/parse-options.h>
Tom Zanussi454c4072010-05-01 01:41:20 -050029
Andrew Vagin26a031e2012-08-07 16:56:04 +040030#include <linux/list.h>
Arnaldo Carvalho de Meloa43783a2017-04-18 10:46:11 -030031#include <errno.h>
Arnaldo Carvalho de Melo9607ad32017-04-19 15:49:18 -030032#include <signal.h>
Andrew Vagin26a031e2012-08-07 16:56:04 +040033
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -030034struct perf_inject {
Jiri Olsa34069122013-10-29 19:04:57 +010035 struct perf_tool tool;
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +090036 struct perf_session *session;
Jiri Olsa34069122013-10-29 19:04:57 +010037 bool build_ids;
38 bool sched_stat;
Adrian Huntercd10b282015-04-30 17:37:26 +030039 bool have_auxtrace;
Adrian Hunterf56fb982015-09-25 16:15:55 +030040 bool strip;
Stephane Eranian9b07e272015-11-30 10:02:21 +010041 bool jit_mode;
Jiri Olsa34069122013-10-29 19:04:57 +010042 const char *input_name;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +010043 struct perf_data output;
Jiri Olsa34069122013-10-29 19:04:57 +010044 u64 bytes_written;
Adrian Hunter73117302015-09-25 16:15:54 +030045 u64 aux_id;
Jiri Olsa34069122013-10-29 19:04:57 +010046 struct list_head samples;
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +030047 struct itrace_synth_opts itrace_synth_opts;
Adrian Hunterba2675b2019-11-15 14:42:18 +020048 char event_copy[PERF_SAMPLE_MAX_SIZE];
Andrew Vagin26a031e2012-08-07 16:56:04 +040049};
50
51struct event_entry {
52 struct list_head node;
53 u32 tid;
Gustavo A. R. Silva6549a8c2020-05-15 12:29:26 -050054 union perf_event event[];
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -030055};
Tom Zanussi454c4072010-05-01 01:41:20 -050056
Adrian Huntercd17a9b2015-04-21 12:21:54 +030057static int output_bytes(struct perf_inject *inject, void *buf, size_t sz)
Tom Zanussi454c4072010-05-01 01:41:20 -050058{
Jiri Olsa34069122013-10-29 19:04:57 +010059 ssize_t size;
Tom Zanussi454c4072010-05-01 01:41:20 -050060
Jiri Olsa8ceb41d2017-01-23 22:07:59 +010061 size = perf_data__write(&inject->output, buf, sz);
Jiri Olsa34069122013-10-29 19:04:57 +010062 if (size < 0)
63 return -errno;
Tom Zanussi454c4072010-05-01 01:41:20 -050064
Jiri Olsa34069122013-10-29 19:04:57 +010065 inject->bytes_written += size;
Tom Zanussi454c4072010-05-01 01:41:20 -050066 return 0;
67}
68
Adrian Huntercd17a9b2015-04-21 12:21:54 +030069static int perf_event__repipe_synth(struct perf_tool *tool,
70 union perf_event *event)
71{
72 struct perf_inject *inject = container_of(tool, struct perf_inject,
73 tool);
74
75 return output_bytes(inject, event, event->header.size);
76}
77
Arnaldo Carvalho de Melod704ebd2015-03-03 12:37:54 -030078static int perf_event__repipe_oe_synth(struct perf_tool *tool,
79 union perf_event *event,
80 struct ordered_events *oe __maybe_unused)
81{
82 return perf_event__repipe_synth(tool, event);
83}
84
Jiri Olsae12b2022016-03-10 17:41:13 +010085#ifdef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +010086static int perf_event__drop_oe(struct perf_tool *tool __maybe_unused,
87 union perf_event *event __maybe_unused,
88 struct ordered_events *oe __maybe_unused)
89{
90 return 0;
91}
92#endif
93
Jiri Olsa89f16882018-09-13 14:54:03 +020094static int perf_event__repipe_op2_synth(struct perf_session *session,
95 union perf_event *event)
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -020096{
Jiri Olsa89f16882018-09-13 14:54:03 +020097 return perf_event__repipe_synth(session->tool, event);
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -020098}
99
Namhyung Kim2946ece2020-10-12 16:02:10 +0900100static int perf_event__repipe_op4_synth(struct perf_session *session,
101 union perf_event *event,
102 u64 data __maybe_unused)
103{
104 return perf_event__repipe_synth(session->tool, event);
105}
106
Adrian Hunter47c3d102013-07-04 16:20:21 +0300107static int perf_event__repipe_attr(struct perf_tool *tool,
108 union perf_event *event,
Jiri Olsa63503db2019-07-21 13:23:52 +0200109 struct evlist **pevlist)
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -0200110{
Adrian Hunter89c97d92013-10-22 10:34:09 +0300111 struct perf_inject *inject = container_of(tool, struct perf_inject,
112 tool);
Stephane Eranian1a1ed1b2012-05-15 13:28:11 +0200113 int ret;
Adrian Hunter47c3d102013-07-04 16:20:21 +0300114
115 ret = perf_event__process_attr(tool, event, pevlist);
Stephane Eranian1a1ed1b2012-05-15 13:28:11 +0200116 if (ret)
117 return ret;
118
Jiri Olsaa261e4a2014-06-05 18:51:44 +0200119 if (!inject->output.is_pipe)
Adrian Hunter89c97d92013-10-22 10:34:09 +0300120 return 0;
121
Adrian Hunter47c3d102013-07-04 16:20:21 +0300122 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -0200123}
124
Namhyung Kim2946ece2020-10-12 16:02:10 +0900125static int perf_event__repipe_event_update(struct perf_tool *tool,
126 union perf_event *event,
127 struct evlist **pevlist __maybe_unused)
128{
129 return perf_event__repipe_synth(tool, event);
130}
131
Adrian Huntere31f0d02015-04-30 17:37:27 +0300132#ifdef HAVE_AUXTRACE_SUPPORT
133
134static int copy_bytes(struct perf_inject *inject, int fd, off_t size)
135{
136 char buf[4096];
137 ssize_t ssz;
138 int ret;
139
140 while (size > 0) {
141 ssz = read(fd, buf, min(size, (off_t)sizeof(buf)));
142 if (ssz < 0)
143 return -errno;
144 ret = output_bytes(inject, buf, ssz);
145 if (ret)
146 return ret;
147 size -= ssz;
148 }
149
150 return 0;
151}
152
Jiri Olsa73365552018-09-13 14:54:04 +0200153static s64 perf_event__repipe_auxtrace(struct perf_session *session,
154 union perf_event *event)
Adrian Huntercd17a9b2015-04-21 12:21:54 +0300155{
Jiri Olsa73365552018-09-13 14:54:04 +0200156 struct perf_tool *tool = session->tool;
Adrian Huntercd17a9b2015-04-21 12:21:54 +0300157 struct perf_inject *inject = container_of(tool, struct perf_inject,
158 tool);
159 int ret;
160
Adrian Huntercd10b282015-04-30 17:37:26 +0300161 inject->have_auxtrace = true;
162
Adrian Hunter99fa2982015-04-30 17:37:25 +0300163 if (!inject->output.is_pipe) {
164 off_t offset;
165
Jiri Olsaeae8ad82017-01-23 22:25:41 +0100166 offset = lseek(inject->output.file.fd, 0, SEEK_CUR);
Adrian Hunter99fa2982015-04-30 17:37:25 +0300167 if (offset == -1)
168 return -errno;
169 ret = auxtrace_index__auxtrace_event(&session->auxtrace_index,
170 event, offset);
171 if (ret < 0)
172 return ret;
173 }
174
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100175 if (perf_data__is_pipe(session->data) || !session->one_mmap) {
Adrian Huntercd17a9b2015-04-21 12:21:54 +0300176 ret = output_bytes(inject, event, event->header.size);
177 if (ret < 0)
178 return ret;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100179 ret = copy_bytes(inject, perf_data__fd(session->data),
Adrian Huntercd17a9b2015-04-21 12:21:54 +0300180 event->auxtrace.size);
181 } else {
182 ret = output_bytes(inject, event,
183 event->header.size + event->auxtrace.size);
184 }
185 if (ret < 0)
186 return ret;
187
188 return event->auxtrace.size;
189}
190
Adrian Huntere31f0d02015-04-30 17:37:27 +0300191#else
192
193static s64
Jiri Olsa73365552018-09-13 14:54:04 +0200194perf_event__repipe_auxtrace(struct perf_session *session __maybe_unused,
195 union perf_event *event __maybe_unused)
Adrian Huntere31f0d02015-04-30 17:37:27 +0300196{
197 pr_err("AUX area tracing not supported\n");
198 return -EINVAL;
199}
200
201#endif
202
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200203static int perf_event__repipe(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200204 union perf_event *event,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300205 struct perf_sample *sample __maybe_unused,
Adrian Hunter63c2c9f2013-07-04 16:20:20 +0300206 struct machine *machine __maybe_unused)
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -0200207{
Adrian Hunter63c2c9f2013-07-04 16:20:20 +0300208 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -0200209}
210
Adrian Hunterf56fb982015-09-25 16:15:55 +0300211static int perf_event__drop(struct perf_tool *tool __maybe_unused,
212 union perf_event *event __maybe_unused,
213 struct perf_sample *sample __maybe_unused,
214 struct machine *machine __maybe_unused)
215{
216 return 0;
217}
218
Adrian Hunter73117302015-09-25 16:15:54 +0300219static int perf_event__drop_aux(struct perf_tool *tool,
220 union perf_event *event __maybe_unused,
221 struct perf_sample *sample,
222 struct machine *machine __maybe_unused)
223{
224 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
225
226 if (!inject->aux_id)
227 inject->aux_id = sample->id;
228
229 return 0;
230}
231
Adrian Hunterba2675b2019-11-15 14:42:18 +0200232static union perf_event *
233perf_inject__cut_auxtrace_sample(struct perf_inject *inject,
234 union perf_event *event,
235 struct perf_sample *sample)
236{
237 size_t sz1 = sample->aux_sample.data - (void *)event;
238 size_t sz2 = event->header.size - sample->aux_sample.size - sz1;
239 union perf_event *ev = (union perf_event *)inject->event_copy;
240
241 if (sz1 > event->header.size || sz2 > event->header.size ||
242 sz1 + sz2 > event->header.size ||
243 sz1 < sizeof(struct perf_event_header) + sizeof(u64))
244 return event;
245
246 memcpy(ev, event, sz1);
247 memcpy((void *)ev + sz1, (void *)event + event->header.size - sz2, sz2);
248 ev->header.size = sz1 + sz2;
249 ((u64 *)((void *)ev + sz1))[-1] = 0;
250
251 return ev;
252}
253
Andrew Vagin26a031e2012-08-07 16:56:04 +0400254typedef int (*inject_handler)(struct perf_tool *tool,
255 union perf_event *event,
256 struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200257 struct evsel *evsel,
Andrew Vagin26a031e2012-08-07 16:56:04 +0400258 struct machine *machine);
259
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200260static int perf_event__repipe_sample(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200261 union perf_event *event,
Andrew Vagin26a031e2012-08-07 16:56:04 +0400262 struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200263 struct evsel *evsel,
Andrew Vagin26a031e2012-08-07 16:56:04 +0400264 struct machine *machine)
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300265{
Adrian Hunterba2675b2019-11-15 14:42:18 +0200266 struct perf_inject *inject = container_of(tool, struct perf_inject,
267 tool);
268
Arnaldo Carvalho de Melo40978e92019-07-03 16:02:09 -0300269 if (evsel && evsel->handler) {
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300270 inject_handler f = evsel->handler;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400271 return f(tool, event, sample, evsel, machine);
272 }
273
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400274 build_id__mark_dso_hit(tool, event, sample, evsel, machine);
275
Adrian Hunterba2675b2019-11-15 14:42:18 +0200276 if (inject->itrace_synth_opts.set && sample->aux_sample.size)
277 event = perf_inject__cut_auxtrace_sample(inject, event, sample);
278
Adrian Hunter63c2c9f2013-07-04 16:20:20 +0300279 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300280}
281
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200282static int perf_event__repipe_mmap(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200283 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200284 struct perf_sample *sample,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200285 struct machine *machine)
Tom Zanussi454c4072010-05-01 01:41:20 -0500286{
287 int err;
288
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200289 err = perf_event__process_mmap(tool, event, sample, machine);
290 perf_event__repipe(tool, event, sample, machine);
Tom Zanussi454c4072010-05-01 01:41:20 -0500291
292 return err;
293}
294
Jiri Olsae12b2022016-03-10 17:41:13 +0100295#ifdef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +0100296static int perf_event__jit_repipe_mmap(struct perf_tool *tool,
297 union perf_event *event,
298 struct perf_sample *sample,
299 struct machine *machine)
300{
301 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
302 u64 n = 0;
Adrian Hunter570735b2016-03-07 16:44:40 -0300303 int ret;
Stephane Eranian9b07e272015-11-30 10:02:21 +0100304
305 /*
306 * if jit marker, then inject jit mmaps and generate ELF images
307 */
Adrian Hunter570735b2016-03-07 16:44:40 -0300308 ret = jit_process(inject->session, &inject->output, machine,
Steve MacLeanc8f6ae12020-05-26 18:51:11 -0700309 event->mmap.filename, event->mmap.pid, &n);
Adrian Hunter570735b2016-03-07 16:44:40 -0300310 if (ret < 0)
311 return ret;
312 if (ret) {
Stephane Eranian9b07e272015-11-30 10:02:21 +0100313 inject->bytes_written += n;
314 return 0;
315 }
316 return perf_event__repipe_mmap(tool, event, sample, machine);
317}
318#endif
319
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200320static int perf_event__repipe_mmap2(struct perf_tool *tool,
321 union perf_event *event,
322 struct perf_sample *sample,
323 struct machine *machine)
324{
325 int err;
326
327 err = perf_event__process_mmap2(tool, event, sample, machine);
328 perf_event__repipe(tool, event, sample, machine);
329
330 return err;
331}
332
Jiri Olsae12b2022016-03-10 17:41:13 +0100333#ifdef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +0100334static int perf_event__jit_repipe_mmap2(struct perf_tool *tool,
335 union perf_event *event,
336 struct perf_sample *sample,
337 struct machine *machine)
338{
339 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
340 u64 n = 0;
Adrian Hunter570735b2016-03-07 16:44:40 -0300341 int ret;
Stephane Eranian9b07e272015-11-30 10:02:21 +0100342
343 /*
344 * if jit marker, then inject jit mmaps and generate ELF images
345 */
Adrian Hunter570735b2016-03-07 16:44:40 -0300346 ret = jit_process(inject->session, &inject->output, machine,
Steve MacLeanc8f6ae12020-05-26 18:51:11 -0700347 event->mmap2.filename, event->mmap2.pid, &n);
Adrian Hunter570735b2016-03-07 16:44:40 -0300348 if (ret < 0)
349 return ret;
350 if (ret) {
Stephane Eranian9b07e272015-11-30 10:02:21 +0100351 inject->bytes_written += n;
352 return 0;
353 }
354 return perf_event__repipe_mmap2(tool, event, sample, machine);
355}
356#endif
357
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300358static int perf_event__repipe_fork(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200359 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200360 struct perf_sample *sample,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200361 struct machine *machine)
Tom Zanussi454c4072010-05-01 01:41:20 -0500362{
363 int err;
364
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300365 err = perf_event__process_fork(tool, event, sample, machine);
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200366 perf_event__repipe(tool, event, sample, machine);
Tom Zanussi454c4072010-05-01 01:41:20 -0500367
368 return err;
369}
370
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300371static int perf_event__repipe_comm(struct perf_tool *tool,
372 union perf_event *event,
373 struct perf_sample *sample,
374 struct machine *machine)
375{
376 int err;
377
378 err = perf_event__process_comm(tool, event, sample, machine);
379 perf_event__repipe(tool, event, sample, machine);
380
381 return err;
382}
383
Hari Bathinif3b36142017-03-08 02:11:43 +0530384static int perf_event__repipe_namespaces(struct perf_tool *tool,
385 union perf_event *event,
386 struct perf_sample *sample,
387 struct machine *machine)
388{
389 int err = perf_event__process_namespaces(tool, event, sample, machine);
390
391 perf_event__repipe(tool, event, sample, machine);
392
393 return err;
394}
395
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300396static int perf_event__repipe_exit(struct perf_tool *tool,
397 union perf_event *event,
398 struct perf_sample *sample,
399 struct machine *machine)
400{
401 int err;
402
403 err = perf_event__process_exit(tool, event, sample, machine);
404 perf_event__repipe(tool, event, sample, machine);
405
406 return err;
407}
408
Jiri Olsa89f16882018-09-13 14:54:03 +0200409static int perf_event__repipe_tracing_data(struct perf_session *session,
410 union perf_event *event)
Tom Zanussi454c4072010-05-01 01:41:20 -0500411{
412 int err;
413
Jiri Olsa89f16882018-09-13 14:54:03 +0200414 perf_event__repipe_synth(session->tool, event);
415 err = perf_event__process_tracing_data(session, event);
Tom Zanussi454c4072010-05-01 01:41:20 -0500416
417 return err;
418}
419
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300420static int dso__read_build_id(struct dso *dso)
Tom Zanussi454c4072010-05-01 01:41:20 -0500421{
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300422 if (dso->has_build_id)
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300423 return 0;
Tom Zanussi454c4072010-05-01 01:41:20 -0500424
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300425 if (filename__read_build_id(dso->long_name, dso->build_id,
426 sizeof(dso->build_id)) > 0) {
427 dso->has_build_id = true;
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300428 return 0;
Tom Zanussi454c4072010-05-01 01:41:20 -0500429 }
430
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300431 return -1;
432}
Tom Zanussi454c4072010-05-01 01:41:20 -0500433
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300434static int dso__inject_build_id(struct dso *dso, struct perf_tool *tool,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200435 struct machine *machine)
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300436{
437 u16 misc = PERF_RECORD_MISC_USER;
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300438 int err;
Tom Zanussi454c4072010-05-01 01:41:20 -0500439
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300440 if (dso__read_build_id(dso) < 0) {
441 pr_debug("no build_id found for %s\n", dso->long_name);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300442 return -1;
443 }
Tom Zanussi454c4072010-05-01 01:41:20 -0500444
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300445 if (dso->kernel)
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300446 misc = PERF_RECORD_MISC_KERNEL;
447
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300448 err = perf_event__synthesize_build_id(tool, dso, misc, perf_event__repipe,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200449 machine);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300450 if (err) {
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300451 pr_err("Can't synthesize build_id event for %s\n", dso->long_name);
Tom Zanussi454c4072010-05-01 01:41:20 -0500452 return -1;
453 }
454
455 return 0;
456}
457
Namhyung Kim0bf02a02020-10-12 16:02:09 +0900458int perf_event__inject_buildid(struct perf_tool *tool, union perf_event *event,
459 struct perf_sample *sample,
460 struct evsel *evsel __maybe_unused,
461 struct machine *machine)
Tom Zanussi454c4072010-05-01 01:41:20 -0500462{
463 struct addr_location al;
464 struct thread *thread;
Tom Zanussi454c4072010-05-01 01:41:20 -0500465
Namhyung Kim13ce34d2014-05-12 09:56:42 +0900466 thread = machine__findnew_thread(machine, sample->pid, sample->tid);
Tom Zanussi454c4072010-05-01 01:41:20 -0500467 if (thread == NULL) {
468 pr_err("problem processing %d event, skipping it.\n",
469 event->header.type);
Tom Zanussi454c4072010-05-01 01:41:20 -0500470 goto repipe;
471 }
472
Arnaldo Carvalho de Melo71a84b52018-04-24 11:58:56 -0300473 if (thread__find_map(thread, sample->cpumode, sample->ip, &al)) {
Tom Zanussi454c4072010-05-01 01:41:20 -0500474 if (!al.map->dso->hit) {
475 al.map->dso->hit = 1;
Arnaldo Carvalho de Melobe39db92016-09-01 19:25:52 -0300476 if (map__load(al.map) >= 0) {
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200477 dso__inject_build_id(al.map->dso, tool, machine);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300478 /*
479 * If this fails, too bad, let the other side
480 * account this as unresolved.
481 */
Namhyung Kim393be2e2012-08-06 13:41:21 +0900482 } else {
Ingo Molnar89fe8082013-09-30 12:07:11 +0200483#ifdef HAVE_LIBELF_SUPPORT
Tom Zanussi454c4072010-05-01 01:41:20 -0500484 pr_warning("no symbols found in %s, maybe "
485 "install a debug package?\n",
486 al.map->dso->long_name);
Namhyung Kim393be2e2012-08-06 13:41:21 +0900487#endif
488 }
Tom Zanussi454c4072010-05-01 01:41:20 -0500489 }
490 }
491
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300492 thread__put(thread);
Tom Zanussi454c4072010-05-01 01:41:20 -0500493repipe:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200494 perf_event__repipe(tool, event, sample, machine);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300495 return 0;
Tom Zanussi454c4072010-05-01 01:41:20 -0500496}
497
Andrew Vagin26a031e2012-08-07 16:56:04 +0400498static int perf_inject__sched_process_exit(struct perf_tool *tool,
499 union perf_event *event __maybe_unused,
500 struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200501 struct evsel *evsel __maybe_unused,
Andrew Vagin26a031e2012-08-07 16:56:04 +0400502 struct machine *machine __maybe_unused)
503{
504 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
505 struct event_entry *ent;
506
507 list_for_each_entry(ent, &inject->samples, node) {
508 if (sample->tid == ent->tid) {
509 list_del_init(&ent->node);
510 free(ent);
511 break;
512 }
513 }
514
515 return 0;
516}
517
518static int perf_inject__sched_switch(struct perf_tool *tool,
519 union perf_event *event,
520 struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200521 struct evsel *evsel,
Andrew Vagin26a031e2012-08-07 16:56:04 +0400522 struct machine *machine)
523{
524 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
525 struct event_entry *ent;
526
527 perf_inject__sched_process_exit(tool, event, sample, evsel, machine);
528
529 ent = malloc(event->header.size + sizeof(struct event_entry));
530 if (ent == NULL) {
531 color_fprintf(stderr, PERF_COLOR_RED,
532 "Not enough memory to process sched switch event!");
533 return -1;
534 }
535
536 ent->tid = sample->tid;
537 memcpy(&ent->event, event, event->header.size);
538 list_add(&ent->node, &inject->samples);
539 return 0;
540}
541
542static int perf_inject__sched_stat(struct perf_tool *tool,
543 union perf_event *event __maybe_unused,
544 struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200545 struct evsel *evsel,
Andrew Vagin26a031e2012-08-07 16:56:04 +0400546 struct machine *machine)
547{
548 struct event_entry *ent;
549 union perf_event *event_sw;
550 struct perf_sample sample_sw;
551 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
Arnaldo Carvalho de Meloefc0cdc2020-04-29 16:26:57 -0300552 u32 pid = evsel__intval(evsel, sample, "pid");
Andrew Vagin26a031e2012-08-07 16:56:04 +0400553
554 list_for_each_entry(ent, &inject->samples, node) {
555 if (pid == ent->tid)
556 goto found;
557 }
558
559 return 0;
560found:
561 event_sw = &ent->event[0];
Arnaldo Carvalho de Melo6b6017a2020-04-30 11:03:49 -0300562 evsel__parse_sample(evsel, event_sw, &sample_sw);
Andrew Vagin26a031e2012-08-07 16:56:04 +0400563
564 sample_sw.period = sample->period;
565 sample_sw.time = sample->time;
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200566 perf_event__synthesize_sample(event_sw, evsel->core.attr.sample_type,
567 evsel->core.attr.read_format, &sample_sw);
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400568 build_id__mark_dso_hit(tool, event_sw, &sample_sw, evsel, machine);
Andrew Vagin26a031e2012-08-07 16:56:04 +0400569 return perf_event__repipe(tool, event_sw, &sample_sw, machine);
570}
571
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300572static void sig_handler(int sig __maybe_unused)
Tom Zanussi454c4072010-05-01 01:41:20 -0500573{
574 session_done = 1;
575}
576
Arnaldo Carvalho de Melob14b36d2020-05-04 13:57:44 -0300577static int evsel__check_stype(struct evsel *evsel, u64 sample_type, const char *sample_msg)
Andrew Vagin26a031e2012-08-07 16:56:04 +0400578{
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200579 struct perf_event_attr *attr = &evsel->core.attr;
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -0300580 const char *name = evsel__name(evsel);
Andrew Vagin26a031e2012-08-07 16:56:04 +0400581
582 if (!(attr->sample_type & sample_type)) {
583 pr_err("Samples for %s event do not have %s attribute set.",
584 name, sample_msg);
585 return -EINVAL;
586 }
587
588 return 0;
589}
590
Adrian Hunterf56fb982015-09-25 16:15:55 +0300591static int drop_sample(struct perf_tool *tool __maybe_unused,
592 union perf_event *event __maybe_unused,
593 struct perf_sample *sample __maybe_unused,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200594 struct evsel *evsel __maybe_unused,
Adrian Hunterf56fb982015-09-25 16:15:55 +0300595 struct machine *machine __maybe_unused)
596{
597 return 0;
598}
599
600static void strip_init(struct perf_inject *inject)
601{
Jiri Olsa63503db2019-07-21 13:23:52 +0200602 struct evlist *evlist = inject->session->evlist;
Jiri Olsa32dcd022019-07-21 13:23:51 +0200603 struct evsel *evsel;
Adrian Hunterf56fb982015-09-25 16:15:55 +0300604
605 inject->tool.context_switch = perf_event__drop;
606
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300607 evlist__for_each_entry(evlist, evsel)
Adrian Hunterf56fb982015-09-25 16:15:55 +0300608 evsel->handler = drop_sample;
609}
610
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300611static int __cmd_inject(struct perf_inject *inject)
Tom Zanussi454c4072010-05-01 01:41:20 -0500612{
Tom Zanussi454c4072010-05-01 01:41:20 -0500613 int ret = -EINVAL;
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900614 struct perf_session *session = inject->session;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100615 struct perf_data *data_out = &inject->output;
616 int fd = perf_data__fd(data_out);
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300617 u64 output_data_offset;
Tom Zanussi454c4072010-05-01 01:41:20 -0500618
619 signal(SIGINT, sig_handler);
620
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300621 if (inject->build_ids || inject->sched_stat ||
622 inject->itrace_synth_opts.set) {
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300623 inject->tool.mmap = perf_event__repipe_mmap;
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200624 inject->tool.mmap2 = perf_event__repipe_mmap2;
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300625 inject->tool.fork = perf_event__repipe_fork;
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300626 inject->tool.tracing_data = perf_event__repipe_tracing_data;
Tom Zanussi454c4072010-05-01 01:41:20 -0500627 }
628
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300629 output_data_offset = session->header.data_offset;
630
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400631 if (inject->build_ids) {
632 inject->tool.sample = perf_event__inject_buildid;
633 } else if (inject->sched_stat) {
Jiri Olsa32dcd022019-07-21 13:23:51 +0200634 struct evsel *evsel;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400635
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300636 evlist__for_each_entry(session->evlist, evsel) {
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -0300637 const char *name = evsel__name(evsel);
Andrew Vagin26a031e2012-08-07 16:56:04 +0400638
639 if (!strcmp(name, "sched:sched_switch")) {
Arnaldo Carvalho de Melob14b36d2020-05-04 13:57:44 -0300640 if (evsel__check_stype(evsel, PERF_SAMPLE_TID, "TID"))
Andrew Vagin26a031e2012-08-07 16:56:04 +0400641 return -EINVAL;
642
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300643 evsel->handler = perf_inject__sched_switch;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400644 } else if (!strcmp(name, "sched:sched_process_exit"))
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300645 evsel->handler = perf_inject__sched_process_exit;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400646 else if (!strncmp(name, "sched:sched_stat_", 17))
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300647 evsel->handler = perf_inject__sched_stat;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400648 }
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300649 } else if (inject->itrace_synth_opts.set) {
650 session->itrace_synth_opts = &inject->itrace_synth_opts;
651 inject->itrace_synth_opts.inject = true;
652 inject->tool.comm = perf_event__repipe_comm;
Hari Bathinif3b36142017-03-08 02:11:43 +0530653 inject->tool.namespaces = perf_event__repipe_namespaces;
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300654 inject->tool.exit = perf_event__repipe_exit;
Adrian Hunter29f6eec2019-12-04 14:08:00 +0200655 inject->tool.id_index = perf_event__process_id_index;
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300656 inject->tool.auxtrace_info = perf_event__process_auxtrace_info;
657 inject->tool.auxtrace = perf_event__process_auxtrace;
Adrian Hunter73117302015-09-25 16:15:54 +0300658 inject->tool.aux = perf_event__drop_aux;
659 inject->tool.itrace_start = perf_event__drop_aux,
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300660 inject->tool.ordered_events = true;
661 inject->tool.ordering_requires_timestamps = true;
662 /* Allow space in the header for new attributes */
663 output_data_offset = 4096;
Adrian Hunterf56fb982015-09-25 16:15:55 +0300664 if (inject->strip)
665 strip_init(inject);
Andrew Vagin26a031e2012-08-07 16:56:04 +0400666 }
667
Adrian Hunter99fa2982015-04-30 17:37:25 +0300668 if (!inject->itrace_synth_opts.set)
669 auxtrace_index__free(&session->auxtrace_index);
670
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100671 if (!data_out->is_pipe)
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300672 lseek(fd, output_data_offset, SEEK_SET);
Andrew Vagine558a5b2012-08-07 16:56:02 +0400673
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -0300674 ret = perf_session__process_events(session);
David Carrillo-Cisnerosbb8d5212017-04-10 13:14:26 -0700675 if (ret)
676 return ret;
Tom Zanussi454c4072010-05-01 01:41:20 -0500677
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100678 if (!data_out->is_pipe) {
Adrian Hunter640dad42016-03-07 16:44:38 -0300679 if (inject->build_ids)
Adrian Huntere38b43c2014-07-14 13:02:34 +0300680 perf_header__set_feat(&session->header,
681 HEADER_BUILD_ID);
Adrian Hunter640dad42016-03-07 16:44:38 -0300682 /*
683 * Keep all buildids when there is unprocessed AUX data because
684 * it is not known which ones the AUX trace hits.
685 */
686 if (perf_header__has_feat(&session->header, HEADER_BUILD_ID) &&
687 inject->have_auxtrace && !inject->itrace_synth_opts.set)
688 dsos__hit_all(session);
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300689 /*
690 * The AUX areas have been removed and replaced with
Adrian Hunter73117302015-09-25 16:15:54 +0300691 * synthesized hardware events, so clear the feature flag and
692 * remove the evsel.
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300693 */
Adrian Hunter051a01b2015-09-25 16:15:43 +0300694 if (inject->itrace_synth_opts.set) {
Jiri Olsa32dcd022019-07-21 13:23:51 +0200695 struct evsel *evsel;
Adrian Hunter73117302015-09-25 16:15:54 +0300696
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300697 perf_header__clear_feat(&session->header,
698 HEADER_AUXTRACE);
Adrian Hunterec90e422020-04-29 18:07:46 +0300699 if (inject->itrace_synth_opts.last_branch ||
700 inject->itrace_synth_opts.add_last_branch)
Adrian Hunter051a01b2015-09-25 16:15:43 +0300701 perf_header__set_feat(&session->header,
702 HEADER_BRANCH_STACK);
Adrian Hunter73117302015-09-25 16:15:54 +0300703 evsel = perf_evlist__id2evsel_strict(session->evlist,
704 inject->aux_id);
705 if (evsel) {
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -0300706 pr_debug("Deleting %s\n", evsel__name(evsel));
Jiri Olsa16251022019-07-21 13:24:00 +0200707 evlist__remove(session->evlist, evsel);
Jiri Olsa5eb2dd22019-07-21 13:23:57 +0200708 evsel__delete(evsel);
Adrian Hunter73117302015-09-25 16:15:54 +0300709 }
Adrian Hunter051a01b2015-09-25 16:15:43 +0300710 }
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300711 session->header.data_offset = output_data_offset;
Andrew Vagine558a5b2012-08-07 16:56:02 +0400712 session->header.data_size = inject->bytes_written;
Namhyung Kim42aa2762015-01-29 17:06:48 +0900713 perf_session__write_header(session, session->evlist, fd, true);
Andrew Vagine558a5b2012-08-07 16:56:02 +0400714 }
715
Tom Zanussi454c4072010-05-01 01:41:20 -0500716 return ret;
717}
718
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -0300719int cmd_inject(int argc, const char **argv)
Tom Zanussi454c4072010-05-01 01:41:20 -0500720{
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300721 struct perf_inject inject = {
722 .tool = {
723 .sample = perf_event__repipe_sample,
Namhyung Kim2946ece2020-10-12 16:02:10 +0900724 .read = perf_event__repipe_sample,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300725 .mmap = perf_event__repipe,
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200726 .mmap2 = perf_event__repipe,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300727 .comm = perf_event__repipe,
Namhyung Kim2946ece2020-10-12 16:02:10 +0900728 .namespaces = perf_event__repipe,
729 .cgroup = perf_event__repipe,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300730 .fork = perf_event__repipe,
731 .exit = perf_event__repipe,
732 .lost = perf_event__repipe,
Adrian Hunterd8145b32015-11-13 11:48:32 +0200733 .lost_samples = perf_event__repipe,
Adrian Hunter4a96f7a2015-04-30 17:37:29 +0300734 .aux = perf_event__repipe,
Adrian Hunter0ad21f62015-04-30 17:37:30 +0300735 .itrace_start = perf_event__repipe,
Adrian Hunter02860392015-07-21 12:44:03 +0300736 .context_switch = perf_event__repipe,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300737 .throttle = perf_event__repipe,
738 .unthrottle = perf_event__repipe,
Namhyung Kim2946ece2020-10-12 16:02:10 +0900739 .ksymbol = perf_event__repipe,
740 .bpf = perf_event__repipe,
741 .text_poke = perf_event__repipe,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300742 .attr = perf_event__repipe_attr,
Namhyung Kim2946ece2020-10-12 16:02:10 +0900743 .event_update = perf_event__repipe_event_update,
Adrian Hunter47c3d102013-07-04 16:20:21 +0300744 .tracing_data = perf_event__repipe_op2_synth,
Arnaldo Carvalho de Melod704ebd2015-03-03 12:37:54 -0300745 .finished_round = perf_event__repipe_oe_synth,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300746 .build_id = perf_event__repipe_op2_synth,
Adrian Hunter3c659ee2014-10-27 15:49:22 +0200747 .id_index = perf_event__repipe_op2_synth,
Namhyung Kim2946ece2020-10-12 16:02:10 +0900748 .auxtrace_info = perf_event__repipe_op2_synth,
749 .auxtrace_error = perf_event__repipe_op2_synth,
750 .time_conv = perf_event__repipe_op2_synth,
751 .thread_map = perf_event__repipe_op2_synth,
752 .cpu_map = perf_event__repipe_op2_synth,
753 .stat_config = perf_event__repipe_op2_synth,
754 .stat = perf_event__repipe_op2_synth,
755 .stat_round = perf_event__repipe_op2_synth,
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -0700756 .feature = perf_event__repipe_op2_synth,
Namhyung Kim2946ece2020-10-12 16:02:10 +0900757 .compressed = perf_event__repipe_op4_synth,
758 .auxtrace = perf_event__repipe_auxtrace,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300759 },
Andrew Vagine558a5b2012-08-07 16:56:02 +0400760 .input_name = "-",
Andrew Vagin26a031e2012-08-07 16:56:04 +0400761 .samples = LIST_HEAD_INIT(inject.samples),
Jiri Olsa34069122013-10-29 19:04:57 +0100762 .output = {
Jiri Olsa2d4f2792019-02-21 10:41:30 +0100763 .path = "-",
764 .mode = PERF_DATA_MODE_WRITE,
Jiri Olsa34069122013-10-29 19:04:57 +0100765 },
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300766 };
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100767 struct perf_data data = {
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900768 .mode = PERF_DATA_MODE_READ,
769 };
770 int ret;
771
Stephane Eranian9b07e272015-11-30 10:02:21 +0100772 struct option options[] = {
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300773 OPT_BOOLEAN('b', "build-ids", &inject.build_ids,
774 "Inject build-ids into the output stream"),
Andrew Vagine558a5b2012-08-07 16:56:02 +0400775 OPT_STRING('i', "input", &inject.input_name, "file",
776 "input file name"),
Jiri Olsa2d4f2792019-02-21 10:41:30 +0100777 OPT_STRING('o', "output", &inject.output.path, "file",
Andrew Vagine558a5b2012-08-07 16:56:02 +0400778 "output file name"),
Andrew Vagin26a031e2012-08-07 16:56:04 +0400779 OPT_BOOLEAN('s', "sched-stat", &inject.sched_stat,
780 "Merge sched-stat and sched-switch for getting events "
781 "where and how long tasks slept"),
Jiri Olsae12b2022016-03-10 17:41:13 +0100782#ifdef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +0100783 OPT_BOOLEAN('j', "jit", &inject.jit_mode, "merge jitdump files into perf.data file"),
Jiri Olsae12b2022016-03-10 17:41:13 +0100784#endif
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300785 OPT_INCR('v', "verbose", &verbose,
786 "be more verbose (show build ids, etc)"),
Adrian Huntera7a2b8b2014-07-22 16:17:38 +0300787 OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name, "file",
788 "kallsyms pathname"),
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100789 OPT_BOOLEAN('f', "force", &data.force, "don't complain, do it"),
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300790 OPT_CALLBACK_OPTARG(0, "itrace", &inject.itrace_synth_opts,
Andi Kleenc12e0392018-09-13 20:10:31 -0700791 NULL, "opts", "Instruction Tracing options\n"
792 ITRACE_HELP,
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300793 itrace_parse_synth_opts),
Adrian Hunterf56fb982015-09-25 16:15:55 +0300794 OPT_BOOLEAN(0, "strip", &inject.strip,
795 "strip non-synthesized events (use with --itrace)"),
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300796 OPT_END()
797 };
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300798 const char * const inject_usage[] = {
799 "perf inject [<options>]",
800 NULL
801 };
Jiri Olsae12b2022016-03-10 17:41:13 +0100802#ifndef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +0100803 set_option_nobuild(options, 'j', "jit", "NO_LIBELF=1", true);
804#endif
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300805 argc = parse_options(argc, argv, options, inject_usage, 0);
Tom Zanussi454c4072010-05-01 01:41:20 -0500806
807 /*
808 * Any (unrecognized) arguments left?
809 */
810 if (argc)
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300811 usage_with_options(inject_usage, options);
Tom Zanussi454c4072010-05-01 01:41:20 -0500812
Adrian Hunterf56fb982015-09-25 16:15:55 +0300813 if (inject.strip && !inject.itrace_synth_opts.set) {
814 pr_err("--strip option requires --itrace option\n");
815 return -1;
816 }
817
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100818 if (perf_data__open(&inject.output)) {
Jiri Olsa34069122013-10-29 19:04:57 +0100819 perror("failed to create output file");
820 return -1;
Andrew Vagine558a5b2012-08-07 16:56:02 +0400821 }
822
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -0300823 inject.tool.ordered_events = inject.sched_stat;
824
Jiri Olsa2d4f2792019-02-21 10:41:30 +0100825 data.path = inject.input_name;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100826 inject.session = perf_session__new(&data, true, &inject.tool);
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +0530827 if (IS_ERR(inject.session))
828 return PTR_ERR(inject.session);
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900829
Alexey Budankov371a3372019-03-18 20:45:44 +0300830 if (zstd_init(&(inject.session->zstd_data), 0) < 0)
831 pr_warning("Decompression initialization failed.\n");
832
Arnaldo Carvalho de Melo921f3fa2016-01-22 18:41:00 -0300833 if (inject.build_ids) {
834 /*
835 * to make sure the mmap records are ordered correctly
836 * and so that the correct especially due to jitted code
837 * mmaps. We cannot generate the buildid hit list and
838 * inject the jit mmaps at the same time for now.
839 */
840 inject.tool.ordered_events = true;
841 inject.tool.ordering_requires_timestamps = true;
842 }
Jiri Olsae12b2022016-03-10 17:41:13 +0100843#ifdef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +0100844 if (inject.jit_mode) {
Stephane Eranian9b07e272015-11-30 10:02:21 +0100845 inject.tool.mmap2 = perf_event__jit_repipe_mmap2;
846 inject.tool.mmap = perf_event__jit_repipe_mmap;
847 inject.tool.ordered_events = true;
848 inject.tool.ordering_requires_timestamps = true;
849 /*
850 * JIT MMAP injection injects all MMAP events in one go, so it
851 * does not obey finished_round semantics.
852 */
853 inject.tool.finished_round = perf_event__drop_oe;
854 }
855#endif
Taeung Song9fedfb02015-06-30 17:15:20 +0900856 ret = symbol__init(&inject.session->header.env);
857 if (ret < 0)
858 goto out_delete;
Tom Zanussi454c4072010-05-01 01:41:20 -0500859
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900860 ret = __cmd_inject(&inject);
861
Taeung Song9fedfb02015-06-30 17:15:20 +0900862out_delete:
Alexey Budankov371a3372019-03-18 20:45:44 +0300863 zstd_fini(&(inject.session->zstd_data));
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900864 perf_session__delete(inject.session);
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900865 return ret;
Tom Zanussi454c4072010-05-01 01:41:20 -0500866}