blob: 670157db250217b2fa5ed73410c766bce25e8b1c [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"
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +053027#include <linux/err.h>
Tom Zanussi454c4072010-05-01 01:41:20 -050028
Josh Poimboeuf4b6ab942015-12-15 09:39:39 -060029#include <subcmd/parse-options.h>
Tom Zanussi454c4072010-05-01 01:41:20 -050030
Andrew Vagin26a031e2012-08-07 16:56:04 +040031#include <linux/list.h>
Arnaldo Carvalho de Meloa43783a2017-04-18 10:46:11 -030032#include <errno.h>
Arnaldo Carvalho de Melo9607ad32017-04-19 15:49:18 -030033#include <signal.h>
Andrew Vagin26a031e2012-08-07 16:56:04 +040034
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -030035struct perf_inject {
Jiri Olsa34069122013-10-29 19:04:57 +010036 struct perf_tool tool;
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +090037 struct perf_session *session;
Jiri Olsa34069122013-10-29 19:04:57 +010038 bool build_ids;
39 bool sched_stat;
Adrian Huntercd10b282015-04-30 17:37:26 +030040 bool have_auxtrace;
Adrian Hunterf56fb982015-09-25 16:15:55 +030041 bool strip;
Stephane Eranian9b07e272015-11-30 10:02:21 +010042 bool jit_mode;
Jiri Olsa34069122013-10-29 19:04:57 +010043 const char *input_name;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +010044 struct perf_data output;
Jiri Olsa34069122013-10-29 19:04:57 +010045 u64 bytes_written;
Adrian Hunter73117302015-09-25 16:15:54 +030046 u64 aux_id;
Jiri Olsa34069122013-10-29 19:04:57 +010047 struct list_head samples;
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +030048 struct itrace_synth_opts itrace_synth_opts;
Adrian Hunterba2675b2019-11-15 14:42:18 +020049 char event_copy[PERF_SAMPLE_MAX_SIZE];
Andrew Vagin26a031e2012-08-07 16:56:04 +040050};
51
52struct event_entry {
53 struct list_head node;
54 u32 tid;
Gustavo A. R. Silva6549a8c2020-05-15 12:29:26 -050055 union perf_event event[];
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -030056};
Tom Zanussi454c4072010-05-01 01:41:20 -050057
Adrian Huntercd17a9b2015-04-21 12:21:54 +030058static int output_bytes(struct perf_inject *inject, void *buf, size_t sz)
Tom Zanussi454c4072010-05-01 01:41:20 -050059{
Jiri Olsa34069122013-10-29 19:04:57 +010060 ssize_t size;
Tom Zanussi454c4072010-05-01 01:41:20 -050061
Jiri Olsa8ceb41d2017-01-23 22:07:59 +010062 size = perf_data__write(&inject->output, buf, sz);
Jiri Olsa34069122013-10-29 19:04:57 +010063 if (size < 0)
64 return -errno;
Tom Zanussi454c4072010-05-01 01:41:20 -050065
Jiri Olsa34069122013-10-29 19:04:57 +010066 inject->bytes_written += size;
Tom Zanussi454c4072010-05-01 01:41:20 -050067 return 0;
68}
69
Adrian Huntercd17a9b2015-04-21 12:21:54 +030070static int perf_event__repipe_synth(struct perf_tool *tool,
71 union perf_event *event)
72{
73 struct perf_inject *inject = container_of(tool, struct perf_inject,
74 tool);
75
76 return output_bytes(inject, event, event->header.size);
77}
78
Arnaldo Carvalho de Melod704ebd2015-03-03 12:37:54 -030079static int perf_event__repipe_oe_synth(struct perf_tool *tool,
80 union perf_event *event,
81 struct ordered_events *oe __maybe_unused)
82{
83 return perf_event__repipe_synth(tool, event);
84}
85
Jiri Olsae12b2022016-03-10 17:41:13 +010086#ifdef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +010087static int perf_event__drop_oe(struct perf_tool *tool __maybe_unused,
88 union perf_event *event __maybe_unused,
89 struct ordered_events *oe __maybe_unused)
90{
91 return 0;
92}
93#endif
94
Jiri Olsa89f16882018-09-13 14:54:03 +020095static int perf_event__repipe_op2_synth(struct perf_session *session,
96 union perf_event *event)
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -020097{
Jiri Olsa89f16882018-09-13 14:54:03 +020098 return perf_event__repipe_synth(session->tool, event);
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -020099}
100
Namhyung Kim2946ece2020-10-12 16:02:10 +0900101static int perf_event__repipe_op4_synth(struct perf_session *session,
102 union perf_event *event,
103 u64 data __maybe_unused)
104{
105 return perf_event__repipe_synth(session->tool, event);
106}
107
Adrian Hunter47c3d102013-07-04 16:20:21 +0300108static int perf_event__repipe_attr(struct perf_tool *tool,
109 union perf_event *event,
Jiri Olsa63503db2019-07-21 13:23:52 +0200110 struct evlist **pevlist)
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -0200111{
Adrian Hunter89c97d92013-10-22 10:34:09 +0300112 struct perf_inject *inject = container_of(tool, struct perf_inject,
113 tool);
Stephane Eranian1a1ed1b2012-05-15 13:28:11 +0200114 int ret;
Adrian Hunter47c3d102013-07-04 16:20:21 +0300115
116 ret = perf_event__process_attr(tool, event, pevlist);
Stephane Eranian1a1ed1b2012-05-15 13:28:11 +0200117 if (ret)
118 return ret;
119
Jiri Olsaa261e4a2014-06-05 18:51:44 +0200120 if (!inject->output.is_pipe)
Adrian Hunter89c97d92013-10-22 10:34:09 +0300121 return 0;
122
Adrian Hunter47c3d102013-07-04 16:20:21 +0300123 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -0200124}
125
Namhyung Kim2946ece2020-10-12 16:02:10 +0900126static int perf_event__repipe_event_update(struct perf_tool *tool,
127 union perf_event *event,
128 struct evlist **pevlist __maybe_unused)
129{
130 return perf_event__repipe_synth(tool, event);
131}
132
Adrian Huntere31f0d02015-04-30 17:37:27 +0300133#ifdef HAVE_AUXTRACE_SUPPORT
134
135static int copy_bytes(struct perf_inject *inject, int fd, off_t size)
136{
137 char buf[4096];
138 ssize_t ssz;
139 int ret;
140
141 while (size > 0) {
142 ssz = read(fd, buf, min(size, (off_t)sizeof(buf)));
143 if (ssz < 0)
144 return -errno;
145 ret = output_bytes(inject, buf, ssz);
146 if (ret)
147 return ret;
148 size -= ssz;
149 }
150
151 return 0;
152}
153
Jiri Olsa73365552018-09-13 14:54:04 +0200154static s64 perf_event__repipe_auxtrace(struct perf_session *session,
155 union perf_event *event)
Adrian Huntercd17a9b2015-04-21 12:21:54 +0300156{
Jiri Olsa73365552018-09-13 14:54:04 +0200157 struct perf_tool *tool = session->tool;
Adrian Huntercd17a9b2015-04-21 12:21:54 +0300158 struct perf_inject *inject = container_of(tool, struct perf_inject,
159 tool);
160 int ret;
161
Adrian Huntercd10b282015-04-30 17:37:26 +0300162 inject->have_auxtrace = true;
163
Adrian Hunter99fa2982015-04-30 17:37:25 +0300164 if (!inject->output.is_pipe) {
165 off_t offset;
166
Jiri Olsaeae8ad82017-01-23 22:25:41 +0100167 offset = lseek(inject->output.file.fd, 0, SEEK_CUR);
Adrian Hunter99fa2982015-04-30 17:37:25 +0300168 if (offset == -1)
169 return -errno;
170 ret = auxtrace_index__auxtrace_event(&session->auxtrace_index,
171 event, offset);
172 if (ret < 0)
173 return ret;
174 }
175
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100176 if (perf_data__is_pipe(session->data) || !session->one_mmap) {
Adrian Huntercd17a9b2015-04-21 12:21:54 +0300177 ret = output_bytes(inject, event, event->header.size);
178 if (ret < 0)
179 return ret;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100180 ret = copy_bytes(inject, perf_data__fd(session->data),
Adrian Huntercd17a9b2015-04-21 12:21:54 +0300181 event->auxtrace.size);
182 } else {
183 ret = output_bytes(inject, event,
184 event->header.size + event->auxtrace.size);
185 }
186 if (ret < 0)
187 return ret;
188
189 return event->auxtrace.size;
190}
191
Adrian Huntere31f0d02015-04-30 17:37:27 +0300192#else
193
194static s64
Jiri Olsa73365552018-09-13 14:54:04 +0200195perf_event__repipe_auxtrace(struct perf_session *session __maybe_unused,
196 union perf_event *event __maybe_unused)
Adrian Huntere31f0d02015-04-30 17:37:27 +0300197{
198 pr_err("AUX area tracing not supported\n");
199 return -EINVAL;
200}
201
202#endif
203
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200204static int perf_event__repipe(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200205 union perf_event *event,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300206 struct perf_sample *sample __maybe_unused,
Adrian Hunter63c2c9f2013-07-04 16:20:20 +0300207 struct machine *machine __maybe_unused)
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -0200208{
Adrian Hunter63c2c9f2013-07-04 16:20:20 +0300209 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -0200210}
211
Adrian Hunterf56fb982015-09-25 16:15:55 +0300212static int perf_event__drop(struct perf_tool *tool __maybe_unused,
213 union perf_event *event __maybe_unused,
214 struct perf_sample *sample __maybe_unused,
215 struct machine *machine __maybe_unused)
216{
217 return 0;
218}
219
Adrian Hunter73117302015-09-25 16:15:54 +0300220static int perf_event__drop_aux(struct perf_tool *tool,
221 union perf_event *event __maybe_unused,
222 struct perf_sample *sample,
223 struct machine *machine __maybe_unused)
224{
225 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
226
227 if (!inject->aux_id)
228 inject->aux_id = sample->id;
229
230 return 0;
231}
232
Adrian Hunterba2675b2019-11-15 14:42:18 +0200233static union perf_event *
234perf_inject__cut_auxtrace_sample(struct perf_inject *inject,
235 union perf_event *event,
236 struct perf_sample *sample)
237{
238 size_t sz1 = sample->aux_sample.data - (void *)event;
239 size_t sz2 = event->header.size - sample->aux_sample.size - sz1;
240 union perf_event *ev = (union perf_event *)inject->event_copy;
241
242 if (sz1 > event->header.size || sz2 > event->header.size ||
243 sz1 + sz2 > event->header.size ||
244 sz1 < sizeof(struct perf_event_header) + sizeof(u64))
245 return event;
246
247 memcpy(ev, event, sz1);
248 memcpy((void *)ev + sz1, (void *)event + event->header.size - sz2, sz2);
249 ev->header.size = sz1 + sz2;
250 ((u64 *)((void *)ev + sz1))[-1] = 0;
251
252 return ev;
253}
254
Andrew Vagin26a031e2012-08-07 16:56:04 +0400255typedef int (*inject_handler)(struct perf_tool *tool,
256 union perf_event *event,
257 struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200258 struct evsel *evsel,
Andrew Vagin26a031e2012-08-07 16:56:04 +0400259 struct machine *machine);
260
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200261static int perf_event__repipe_sample(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200262 union perf_event *event,
Andrew Vagin26a031e2012-08-07 16:56:04 +0400263 struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200264 struct evsel *evsel,
Andrew Vagin26a031e2012-08-07 16:56:04 +0400265 struct machine *machine)
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300266{
Adrian Hunterba2675b2019-11-15 14:42:18 +0200267 struct perf_inject *inject = container_of(tool, struct perf_inject,
268 tool);
269
Arnaldo Carvalho de Melo40978e92019-07-03 16:02:09 -0300270 if (evsel && evsel->handler) {
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300271 inject_handler f = evsel->handler;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400272 return f(tool, event, sample, evsel, machine);
273 }
274
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400275 build_id__mark_dso_hit(tool, event, sample, evsel, machine);
276
Adrian Hunterba2675b2019-11-15 14:42:18 +0200277 if (inject->itrace_synth_opts.set && sample->aux_sample.size)
278 event = perf_inject__cut_auxtrace_sample(inject, event, sample);
279
Adrian Hunter63c2c9f2013-07-04 16:20:20 +0300280 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300281}
282
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200283static int perf_event__repipe_mmap(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200284 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200285 struct perf_sample *sample,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200286 struct machine *machine)
Tom Zanussi454c4072010-05-01 01:41:20 -0500287{
288 int err;
289
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200290 err = perf_event__process_mmap(tool, event, sample, machine);
291 perf_event__repipe(tool, event, sample, machine);
Tom Zanussi454c4072010-05-01 01:41:20 -0500292
293 return err;
294}
295
Jiri Olsae12b2022016-03-10 17:41:13 +0100296#ifdef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +0100297static int perf_event__jit_repipe_mmap(struct perf_tool *tool,
298 union perf_event *event,
299 struct perf_sample *sample,
300 struct machine *machine)
301{
302 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
303 u64 n = 0;
Adrian Hunter570735b2016-03-07 16:44:40 -0300304 int ret;
Stephane Eranian9b07e272015-11-30 10:02:21 +0100305
306 /*
307 * if jit marker, then inject jit mmaps and generate ELF images
308 */
Adrian Hunter570735b2016-03-07 16:44:40 -0300309 ret = jit_process(inject->session, &inject->output, machine,
Steve MacLeanc8f6ae12020-05-26 18:51:11 -0700310 event->mmap.filename, event->mmap.pid, &n);
Adrian Hunter570735b2016-03-07 16:44:40 -0300311 if (ret < 0)
312 return ret;
313 if (ret) {
Stephane Eranian9b07e272015-11-30 10:02:21 +0100314 inject->bytes_written += n;
315 return 0;
316 }
317 return perf_event__repipe_mmap(tool, event, sample, machine);
318}
319#endif
320
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200321static int perf_event__repipe_mmap2(struct perf_tool *tool,
322 union perf_event *event,
323 struct perf_sample *sample,
324 struct machine *machine)
325{
326 int err;
327
328 err = perf_event__process_mmap2(tool, event, sample, machine);
329 perf_event__repipe(tool, event, sample, machine);
330
331 return err;
332}
333
Jiri Olsae12b2022016-03-10 17:41:13 +0100334#ifdef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +0100335static int perf_event__jit_repipe_mmap2(struct perf_tool *tool,
336 union perf_event *event,
337 struct perf_sample *sample,
338 struct machine *machine)
339{
340 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
341 u64 n = 0;
Adrian Hunter570735b2016-03-07 16:44:40 -0300342 int ret;
Stephane Eranian9b07e272015-11-30 10:02:21 +0100343
344 /*
345 * if jit marker, then inject jit mmaps and generate ELF images
346 */
Adrian Hunter570735b2016-03-07 16:44:40 -0300347 ret = jit_process(inject->session, &inject->output, machine,
Steve MacLeanc8f6ae12020-05-26 18:51:11 -0700348 event->mmap2.filename, event->mmap2.pid, &n);
Adrian Hunter570735b2016-03-07 16:44:40 -0300349 if (ret < 0)
350 return ret;
351 if (ret) {
Stephane Eranian9b07e272015-11-30 10:02:21 +0100352 inject->bytes_written += n;
353 return 0;
354 }
355 return perf_event__repipe_mmap2(tool, event, sample, machine);
356}
357#endif
358
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300359static int perf_event__repipe_fork(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200360 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200361 struct perf_sample *sample,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200362 struct machine *machine)
Tom Zanussi454c4072010-05-01 01:41:20 -0500363{
364 int err;
365
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300366 err = perf_event__process_fork(tool, event, sample, machine);
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200367 perf_event__repipe(tool, event, sample, machine);
Tom Zanussi454c4072010-05-01 01:41:20 -0500368
369 return err;
370}
371
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300372static int perf_event__repipe_comm(struct perf_tool *tool,
373 union perf_event *event,
374 struct perf_sample *sample,
375 struct machine *machine)
376{
377 int err;
378
379 err = perf_event__process_comm(tool, event, sample, machine);
380 perf_event__repipe(tool, event, sample, machine);
381
382 return err;
383}
384
Hari Bathinif3b36142017-03-08 02:11:43 +0530385static int perf_event__repipe_namespaces(struct perf_tool *tool,
386 union perf_event *event,
387 struct perf_sample *sample,
388 struct machine *machine)
389{
390 int err = perf_event__process_namespaces(tool, event, sample, machine);
391
392 perf_event__repipe(tool, event, sample, machine);
393
394 return err;
395}
396
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300397static int perf_event__repipe_exit(struct perf_tool *tool,
398 union perf_event *event,
399 struct perf_sample *sample,
400 struct machine *machine)
401{
402 int err;
403
404 err = perf_event__process_exit(tool, event, sample, machine);
405 perf_event__repipe(tool, event, sample, machine);
406
407 return err;
408}
409
Jiri Olsa89f16882018-09-13 14:54:03 +0200410static int perf_event__repipe_tracing_data(struct perf_session *session,
411 union perf_event *event)
Tom Zanussi454c4072010-05-01 01:41:20 -0500412{
413 int err;
414
Jiri Olsa89f16882018-09-13 14:54:03 +0200415 perf_event__repipe_synth(session->tool, event);
416 err = perf_event__process_tracing_data(session, event);
Tom Zanussi454c4072010-05-01 01:41:20 -0500417
418 return err;
419}
420
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300421static int dso__read_build_id(struct dso *dso)
Tom Zanussi454c4072010-05-01 01:41:20 -0500422{
Namhyung Kim336c95b2020-10-12 16:02:11 +0900423 struct nscookie nsc;
424
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300425 if (dso->has_build_id)
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300426 return 0;
Tom Zanussi454c4072010-05-01 01:41:20 -0500427
Namhyung Kim336c95b2020-10-12 16:02:11 +0900428 nsinfo__mountns_enter(dso->nsinfo, &nsc);
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300429 if (filename__read_build_id(dso->long_name, dso->build_id,
430 sizeof(dso->build_id)) > 0) {
431 dso->has_build_id = true;
Tom Zanussi454c4072010-05-01 01:41:20 -0500432 }
Namhyung Kim336c95b2020-10-12 16:02:11 +0900433 nsinfo__mountns_exit(&nsc);
Tom Zanussi454c4072010-05-01 01:41:20 -0500434
Namhyung Kim336c95b2020-10-12 16:02:11 +0900435 return dso->has_build_id ? 0 : -1;
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300436}
Tom Zanussi454c4072010-05-01 01:41:20 -0500437
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300438static int dso__inject_build_id(struct dso *dso, struct perf_tool *tool,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200439 struct machine *machine)
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300440{
441 u16 misc = PERF_RECORD_MISC_USER;
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300442 int err;
Tom Zanussi454c4072010-05-01 01:41:20 -0500443
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300444 if (dso__read_build_id(dso) < 0) {
445 pr_debug("no build_id found for %s\n", dso->long_name);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300446 return -1;
447 }
Tom Zanussi454c4072010-05-01 01:41:20 -0500448
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300449 if (dso->kernel)
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300450 misc = PERF_RECORD_MISC_KERNEL;
451
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300452 err = perf_event__synthesize_build_id(tool, dso, misc, perf_event__repipe,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200453 machine);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300454 if (err) {
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300455 pr_err("Can't synthesize build_id event for %s\n", dso->long_name);
Tom Zanussi454c4072010-05-01 01:41:20 -0500456 return -1;
457 }
458
459 return 0;
460}
461
Namhyung Kim0bf02a02020-10-12 16:02:09 +0900462int perf_event__inject_buildid(struct perf_tool *tool, union perf_event *event,
463 struct perf_sample *sample,
464 struct evsel *evsel __maybe_unused,
465 struct machine *machine)
Tom Zanussi454c4072010-05-01 01:41:20 -0500466{
467 struct addr_location al;
468 struct thread *thread;
Tom Zanussi454c4072010-05-01 01:41:20 -0500469
Namhyung Kim13ce34d2014-05-12 09:56:42 +0900470 thread = machine__findnew_thread(machine, sample->pid, sample->tid);
Tom Zanussi454c4072010-05-01 01:41:20 -0500471 if (thread == NULL) {
472 pr_err("problem processing %d event, skipping it.\n",
473 event->header.type);
Tom Zanussi454c4072010-05-01 01:41:20 -0500474 goto repipe;
475 }
476
Arnaldo Carvalho de Melo71a84b52018-04-24 11:58:56 -0300477 if (thread__find_map(thread, sample->cpumode, sample->ip, &al)) {
Tom Zanussi454c4072010-05-01 01:41:20 -0500478 if (!al.map->dso->hit) {
479 al.map->dso->hit = 1;
Arnaldo Carvalho de Melobe39db92016-09-01 19:25:52 -0300480 if (map__load(al.map) >= 0) {
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200481 dso__inject_build_id(al.map->dso, tool, machine);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300482 /*
483 * If this fails, too bad, let the other side
484 * account this as unresolved.
485 */
Namhyung Kim393be2e2012-08-06 13:41:21 +0900486 } else {
Ingo Molnar89fe8082013-09-30 12:07:11 +0200487#ifdef HAVE_LIBELF_SUPPORT
Tom Zanussi454c4072010-05-01 01:41:20 -0500488 pr_warning("no symbols found in %s, maybe "
489 "install a debug package?\n",
490 al.map->dso->long_name);
Namhyung Kim393be2e2012-08-06 13:41:21 +0900491#endif
492 }
Tom Zanussi454c4072010-05-01 01:41:20 -0500493 }
494 }
495
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300496 thread__put(thread);
Tom Zanussi454c4072010-05-01 01:41:20 -0500497repipe:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200498 perf_event__repipe(tool, event, sample, machine);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300499 return 0;
Tom Zanussi454c4072010-05-01 01:41:20 -0500500}
501
Andrew Vagin26a031e2012-08-07 16:56:04 +0400502static int perf_inject__sched_process_exit(struct perf_tool *tool,
503 union perf_event *event __maybe_unused,
504 struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200505 struct evsel *evsel __maybe_unused,
Andrew Vagin26a031e2012-08-07 16:56:04 +0400506 struct machine *machine __maybe_unused)
507{
508 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
509 struct event_entry *ent;
510
511 list_for_each_entry(ent, &inject->samples, node) {
512 if (sample->tid == ent->tid) {
513 list_del_init(&ent->node);
514 free(ent);
515 break;
516 }
517 }
518
519 return 0;
520}
521
522static int perf_inject__sched_switch(struct perf_tool *tool,
523 union perf_event *event,
524 struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200525 struct evsel *evsel,
Andrew Vagin26a031e2012-08-07 16:56:04 +0400526 struct machine *machine)
527{
528 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
529 struct event_entry *ent;
530
531 perf_inject__sched_process_exit(tool, event, sample, evsel, machine);
532
533 ent = malloc(event->header.size + sizeof(struct event_entry));
534 if (ent == NULL) {
535 color_fprintf(stderr, PERF_COLOR_RED,
536 "Not enough memory to process sched switch event!");
537 return -1;
538 }
539
540 ent->tid = sample->tid;
541 memcpy(&ent->event, event, event->header.size);
542 list_add(&ent->node, &inject->samples);
543 return 0;
544}
545
546static int perf_inject__sched_stat(struct perf_tool *tool,
547 union perf_event *event __maybe_unused,
548 struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200549 struct evsel *evsel,
Andrew Vagin26a031e2012-08-07 16:56:04 +0400550 struct machine *machine)
551{
552 struct event_entry *ent;
553 union perf_event *event_sw;
554 struct perf_sample sample_sw;
555 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
Arnaldo Carvalho de Meloefc0cdc2020-04-29 16:26:57 -0300556 u32 pid = evsel__intval(evsel, sample, "pid");
Andrew Vagin26a031e2012-08-07 16:56:04 +0400557
558 list_for_each_entry(ent, &inject->samples, node) {
559 if (pid == ent->tid)
560 goto found;
561 }
562
563 return 0;
564found:
565 event_sw = &ent->event[0];
Arnaldo Carvalho de Melo6b6017a2020-04-30 11:03:49 -0300566 evsel__parse_sample(evsel, event_sw, &sample_sw);
Andrew Vagin26a031e2012-08-07 16:56:04 +0400567
568 sample_sw.period = sample->period;
569 sample_sw.time = sample->time;
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200570 perf_event__synthesize_sample(event_sw, evsel->core.attr.sample_type,
571 evsel->core.attr.read_format, &sample_sw);
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400572 build_id__mark_dso_hit(tool, event_sw, &sample_sw, evsel, machine);
Andrew Vagin26a031e2012-08-07 16:56:04 +0400573 return perf_event__repipe(tool, event_sw, &sample_sw, machine);
574}
575
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300576static void sig_handler(int sig __maybe_unused)
Tom Zanussi454c4072010-05-01 01:41:20 -0500577{
578 session_done = 1;
579}
580
Arnaldo Carvalho de Melob14b36d2020-05-04 13:57:44 -0300581static int evsel__check_stype(struct evsel *evsel, u64 sample_type, const char *sample_msg)
Andrew Vagin26a031e2012-08-07 16:56:04 +0400582{
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200583 struct perf_event_attr *attr = &evsel->core.attr;
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -0300584 const char *name = evsel__name(evsel);
Andrew Vagin26a031e2012-08-07 16:56:04 +0400585
586 if (!(attr->sample_type & sample_type)) {
587 pr_err("Samples for %s event do not have %s attribute set.",
588 name, sample_msg);
589 return -EINVAL;
590 }
591
592 return 0;
593}
594
Adrian Hunterf56fb982015-09-25 16:15:55 +0300595static int drop_sample(struct perf_tool *tool __maybe_unused,
596 union perf_event *event __maybe_unused,
597 struct perf_sample *sample __maybe_unused,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200598 struct evsel *evsel __maybe_unused,
Adrian Hunterf56fb982015-09-25 16:15:55 +0300599 struct machine *machine __maybe_unused)
600{
601 return 0;
602}
603
604static void strip_init(struct perf_inject *inject)
605{
Jiri Olsa63503db2019-07-21 13:23:52 +0200606 struct evlist *evlist = inject->session->evlist;
Jiri Olsa32dcd022019-07-21 13:23:51 +0200607 struct evsel *evsel;
Adrian Hunterf56fb982015-09-25 16:15:55 +0300608
609 inject->tool.context_switch = perf_event__drop;
610
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300611 evlist__for_each_entry(evlist, evsel)
Adrian Hunterf56fb982015-09-25 16:15:55 +0300612 evsel->handler = drop_sample;
613}
614
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300615static int __cmd_inject(struct perf_inject *inject)
Tom Zanussi454c4072010-05-01 01:41:20 -0500616{
Tom Zanussi454c4072010-05-01 01:41:20 -0500617 int ret = -EINVAL;
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900618 struct perf_session *session = inject->session;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100619 struct perf_data *data_out = &inject->output;
620 int fd = perf_data__fd(data_out);
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300621 u64 output_data_offset;
Tom Zanussi454c4072010-05-01 01:41:20 -0500622
623 signal(SIGINT, sig_handler);
624
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300625 if (inject->build_ids || inject->sched_stat ||
626 inject->itrace_synth_opts.set) {
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300627 inject->tool.mmap = perf_event__repipe_mmap;
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200628 inject->tool.mmap2 = perf_event__repipe_mmap2;
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300629 inject->tool.fork = perf_event__repipe_fork;
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300630 inject->tool.tracing_data = perf_event__repipe_tracing_data;
Tom Zanussi454c4072010-05-01 01:41:20 -0500631 }
632
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300633 output_data_offset = session->header.data_offset;
634
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400635 if (inject->build_ids) {
636 inject->tool.sample = perf_event__inject_buildid;
637 } else if (inject->sched_stat) {
Jiri Olsa32dcd022019-07-21 13:23:51 +0200638 struct evsel *evsel;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400639
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300640 evlist__for_each_entry(session->evlist, evsel) {
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -0300641 const char *name = evsel__name(evsel);
Andrew Vagin26a031e2012-08-07 16:56:04 +0400642
643 if (!strcmp(name, "sched:sched_switch")) {
Arnaldo Carvalho de Melob14b36d2020-05-04 13:57:44 -0300644 if (evsel__check_stype(evsel, PERF_SAMPLE_TID, "TID"))
Andrew Vagin26a031e2012-08-07 16:56:04 +0400645 return -EINVAL;
646
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300647 evsel->handler = perf_inject__sched_switch;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400648 } else if (!strcmp(name, "sched:sched_process_exit"))
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300649 evsel->handler = perf_inject__sched_process_exit;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400650 else if (!strncmp(name, "sched:sched_stat_", 17))
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300651 evsel->handler = perf_inject__sched_stat;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400652 }
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300653 } else if (inject->itrace_synth_opts.set) {
654 session->itrace_synth_opts = &inject->itrace_synth_opts;
655 inject->itrace_synth_opts.inject = true;
656 inject->tool.comm = perf_event__repipe_comm;
Hari Bathinif3b36142017-03-08 02:11:43 +0530657 inject->tool.namespaces = perf_event__repipe_namespaces;
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300658 inject->tool.exit = perf_event__repipe_exit;
Adrian Hunter29f6eec2019-12-04 14:08:00 +0200659 inject->tool.id_index = perf_event__process_id_index;
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300660 inject->tool.auxtrace_info = perf_event__process_auxtrace_info;
661 inject->tool.auxtrace = perf_event__process_auxtrace;
Adrian Hunter73117302015-09-25 16:15:54 +0300662 inject->tool.aux = perf_event__drop_aux;
663 inject->tool.itrace_start = perf_event__drop_aux,
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300664 inject->tool.ordered_events = true;
665 inject->tool.ordering_requires_timestamps = true;
666 /* Allow space in the header for new attributes */
667 output_data_offset = 4096;
Adrian Hunterf56fb982015-09-25 16:15:55 +0300668 if (inject->strip)
669 strip_init(inject);
Andrew Vagin26a031e2012-08-07 16:56:04 +0400670 }
671
Adrian Hunter99fa2982015-04-30 17:37:25 +0300672 if (!inject->itrace_synth_opts.set)
673 auxtrace_index__free(&session->auxtrace_index);
674
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100675 if (!data_out->is_pipe)
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300676 lseek(fd, output_data_offset, SEEK_SET);
Andrew Vagine558a5b2012-08-07 16:56:02 +0400677
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -0300678 ret = perf_session__process_events(session);
David Carrillo-Cisnerosbb8d5212017-04-10 13:14:26 -0700679 if (ret)
680 return ret;
Tom Zanussi454c4072010-05-01 01:41:20 -0500681
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100682 if (!data_out->is_pipe) {
Adrian Hunter640dad42016-03-07 16:44:38 -0300683 if (inject->build_ids)
Adrian Huntere38b43c2014-07-14 13:02:34 +0300684 perf_header__set_feat(&session->header,
685 HEADER_BUILD_ID);
Adrian Hunter640dad42016-03-07 16:44:38 -0300686 /*
687 * Keep all buildids when there is unprocessed AUX data because
688 * it is not known which ones the AUX trace hits.
689 */
690 if (perf_header__has_feat(&session->header, HEADER_BUILD_ID) &&
691 inject->have_auxtrace && !inject->itrace_synth_opts.set)
692 dsos__hit_all(session);
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300693 /*
694 * The AUX areas have been removed and replaced with
Adrian Hunter73117302015-09-25 16:15:54 +0300695 * synthesized hardware events, so clear the feature flag and
696 * remove the evsel.
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300697 */
Adrian Hunter051a01b2015-09-25 16:15:43 +0300698 if (inject->itrace_synth_opts.set) {
Jiri Olsa32dcd022019-07-21 13:23:51 +0200699 struct evsel *evsel;
Adrian Hunter73117302015-09-25 16:15:54 +0300700
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300701 perf_header__clear_feat(&session->header,
702 HEADER_AUXTRACE);
Adrian Hunterec90e422020-04-29 18:07:46 +0300703 if (inject->itrace_synth_opts.last_branch ||
704 inject->itrace_synth_opts.add_last_branch)
Adrian Hunter051a01b2015-09-25 16:15:43 +0300705 perf_header__set_feat(&session->header,
706 HEADER_BRANCH_STACK);
Adrian Hunter73117302015-09-25 16:15:54 +0300707 evsel = perf_evlist__id2evsel_strict(session->evlist,
708 inject->aux_id);
709 if (evsel) {
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -0300710 pr_debug("Deleting %s\n", evsel__name(evsel));
Jiri Olsa16251022019-07-21 13:24:00 +0200711 evlist__remove(session->evlist, evsel);
Jiri Olsa5eb2dd22019-07-21 13:23:57 +0200712 evsel__delete(evsel);
Adrian Hunter73117302015-09-25 16:15:54 +0300713 }
Adrian Hunter051a01b2015-09-25 16:15:43 +0300714 }
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300715 session->header.data_offset = output_data_offset;
Andrew Vagine558a5b2012-08-07 16:56:02 +0400716 session->header.data_size = inject->bytes_written;
Namhyung Kim42aa2762015-01-29 17:06:48 +0900717 perf_session__write_header(session, session->evlist, fd, true);
Andrew Vagine558a5b2012-08-07 16:56:02 +0400718 }
719
Tom Zanussi454c4072010-05-01 01:41:20 -0500720 return ret;
721}
722
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -0300723int cmd_inject(int argc, const char **argv)
Tom Zanussi454c4072010-05-01 01:41:20 -0500724{
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300725 struct perf_inject inject = {
726 .tool = {
727 .sample = perf_event__repipe_sample,
Namhyung Kim2946ece2020-10-12 16:02:10 +0900728 .read = perf_event__repipe_sample,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300729 .mmap = perf_event__repipe,
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200730 .mmap2 = perf_event__repipe,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300731 .comm = perf_event__repipe,
Namhyung Kim2946ece2020-10-12 16:02:10 +0900732 .namespaces = perf_event__repipe,
733 .cgroup = perf_event__repipe,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300734 .fork = perf_event__repipe,
735 .exit = perf_event__repipe,
736 .lost = perf_event__repipe,
Adrian Hunterd8145b32015-11-13 11:48:32 +0200737 .lost_samples = perf_event__repipe,
Adrian Hunter4a96f7a2015-04-30 17:37:29 +0300738 .aux = perf_event__repipe,
Adrian Hunter0ad21f62015-04-30 17:37:30 +0300739 .itrace_start = perf_event__repipe,
Adrian Hunter02860392015-07-21 12:44:03 +0300740 .context_switch = perf_event__repipe,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300741 .throttle = perf_event__repipe,
742 .unthrottle = perf_event__repipe,
Namhyung Kim2946ece2020-10-12 16:02:10 +0900743 .ksymbol = perf_event__repipe,
744 .bpf = perf_event__repipe,
745 .text_poke = perf_event__repipe,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300746 .attr = perf_event__repipe_attr,
Namhyung Kim2946ece2020-10-12 16:02:10 +0900747 .event_update = perf_event__repipe_event_update,
Adrian Hunter47c3d102013-07-04 16:20:21 +0300748 .tracing_data = perf_event__repipe_op2_synth,
Arnaldo Carvalho de Melod704ebd2015-03-03 12:37:54 -0300749 .finished_round = perf_event__repipe_oe_synth,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300750 .build_id = perf_event__repipe_op2_synth,
Adrian Hunter3c659ee2014-10-27 15:49:22 +0200751 .id_index = perf_event__repipe_op2_synth,
Namhyung Kim2946ece2020-10-12 16:02:10 +0900752 .auxtrace_info = perf_event__repipe_op2_synth,
753 .auxtrace_error = perf_event__repipe_op2_synth,
754 .time_conv = perf_event__repipe_op2_synth,
755 .thread_map = perf_event__repipe_op2_synth,
756 .cpu_map = perf_event__repipe_op2_synth,
757 .stat_config = perf_event__repipe_op2_synth,
758 .stat = perf_event__repipe_op2_synth,
759 .stat_round = perf_event__repipe_op2_synth,
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -0700760 .feature = perf_event__repipe_op2_synth,
Namhyung Kim2946ece2020-10-12 16:02:10 +0900761 .compressed = perf_event__repipe_op4_synth,
762 .auxtrace = perf_event__repipe_auxtrace,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300763 },
Andrew Vagine558a5b2012-08-07 16:56:02 +0400764 .input_name = "-",
Andrew Vagin26a031e2012-08-07 16:56:04 +0400765 .samples = LIST_HEAD_INIT(inject.samples),
Jiri Olsa34069122013-10-29 19:04:57 +0100766 .output = {
Jiri Olsa2d4f2792019-02-21 10:41:30 +0100767 .path = "-",
768 .mode = PERF_DATA_MODE_WRITE,
Jiri Olsa34069122013-10-29 19:04:57 +0100769 },
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300770 };
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100771 struct perf_data data = {
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900772 .mode = PERF_DATA_MODE_READ,
773 };
774 int ret;
775
Stephane Eranian9b07e272015-11-30 10:02:21 +0100776 struct option options[] = {
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300777 OPT_BOOLEAN('b', "build-ids", &inject.build_ids,
778 "Inject build-ids into the output stream"),
Andrew Vagine558a5b2012-08-07 16:56:02 +0400779 OPT_STRING('i', "input", &inject.input_name, "file",
780 "input file name"),
Jiri Olsa2d4f2792019-02-21 10:41:30 +0100781 OPT_STRING('o', "output", &inject.output.path, "file",
Andrew Vagine558a5b2012-08-07 16:56:02 +0400782 "output file name"),
Andrew Vagin26a031e2012-08-07 16:56:04 +0400783 OPT_BOOLEAN('s', "sched-stat", &inject.sched_stat,
784 "Merge sched-stat and sched-switch for getting events "
785 "where and how long tasks slept"),
Jiri Olsae12b2022016-03-10 17:41:13 +0100786#ifdef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +0100787 OPT_BOOLEAN('j', "jit", &inject.jit_mode, "merge jitdump files into perf.data file"),
Jiri Olsae12b2022016-03-10 17:41:13 +0100788#endif
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300789 OPT_INCR('v', "verbose", &verbose,
790 "be more verbose (show build ids, etc)"),
Adrian Huntera7a2b8b2014-07-22 16:17:38 +0300791 OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name, "file",
792 "kallsyms pathname"),
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100793 OPT_BOOLEAN('f', "force", &data.force, "don't complain, do it"),
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300794 OPT_CALLBACK_OPTARG(0, "itrace", &inject.itrace_synth_opts,
Andi Kleenc12e0392018-09-13 20:10:31 -0700795 NULL, "opts", "Instruction Tracing options\n"
796 ITRACE_HELP,
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300797 itrace_parse_synth_opts),
Adrian Hunterf56fb982015-09-25 16:15:55 +0300798 OPT_BOOLEAN(0, "strip", &inject.strip,
799 "strip non-synthesized events (use with --itrace)"),
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300800 OPT_END()
801 };
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300802 const char * const inject_usage[] = {
803 "perf inject [<options>]",
804 NULL
805 };
Jiri Olsae12b2022016-03-10 17:41:13 +0100806#ifndef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +0100807 set_option_nobuild(options, 'j', "jit", "NO_LIBELF=1", true);
808#endif
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300809 argc = parse_options(argc, argv, options, inject_usage, 0);
Tom Zanussi454c4072010-05-01 01:41:20 -0500810
811 /*
812 * Any (unrecognized) arguments left?
813 */
814 if (argc)
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300815 usage_with_options(inject_usage, options);
Tom Zanussi454c4072010-05-01 01:41:20 -0500816
Adrian Hunterf56fb982015-09-25 16:15:55 +0300817 if (inject.strip && !inject.itrace_synth_opts.set) {
818 pr_err("--strip option requires --itrace option\n");
819 return -1;
820 }
821
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100822 if (perf_data__open(&inject.output)) {
Jiri Olsa34069122013-10-29 19:04:57 +0100823 perror("failed to create output file");
824 return -1;
Andrew Vagine558a5b2012-08-07 16:56:02 +0400825 }
826
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -0300827 inject.tool.ordered_events = inject.sched_stat;
828
Jiri Olsa2d4f2792019-02-21 10:41:30 +0100829 data.path = inject.input_name;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100830 inject.session = perf_session__new(&data, true, &inject.tool);
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +0530831 if (IS_ERR(inject.session))
832 return PTR_ERR(inject.session);
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900833
Alexey Budankov371a3372019-03-18 20:45:44 +0300834 if (zstd_init(&(inject.session->zstd_data), 0) < 0)
835 pr_warning("Decompression initialization failed.\n");
836
Arnaldo Carvalho de Melo921f3fa2016-01-22 18:41:00 -0300837 if (inject.build_ids) {
838 /*
839 * to make sure the mmap records are ordered correctly
840 * and so that the correct especially due to jitted code
841 * mmaps. We cannot generate the buildid hit list and
842 * inject the jit mmaps at the same time for now.
843 */
844 inject.tool.ordered_events = true;
845 inject.tool.ordering_requires_timestamps = true;
846 }
Jiri Olsae12b2022016-03-10 17:41:13 +0100847#ifdef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +0100848 if (inject.jit_mode) {
Stephane Eranian9b07e272015-11-30 10:02:21 +0100849 inject.tool.mmap2 = perf_event__jit_repipe_mmap2;
850 inject.tool.mmap = perf_event__jit_repipe_mmap;
851 inject.tool.ordered_events = true;
852 inject.tool.ordering_requires_timestamps = true;
853 /*
854 * JIT MMAP injection injects all MMAP events in one go, so it
855 * does not obey finished_round semantics.
856 */
857 inject.tool.finished_round = perf_event__drop_oe;
858 }
859#endif
Taeung Song9fedfb02015-06-30 17:15:20 +0900860 ret = symbol__init(&inject.session->header.env);
861 if (ret < 0)
862 goto out_delete;
Tom Zanussi454c4072010-05-01 01:41:20 -0500863
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900864 ret = __cmd_inject(&inject);
865
Taeung Song9fedfb02015-06-30 17:15:20 +0900866out_delete:
Alexey Budankov371a3372019-03-18 20:45:44 +0300867 zstd_fini(&(inject.session->zstd_data));
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900868 perf_session__delete(inject.session);
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900869 return ret;
Tom Zanussi454c4072010-05-01 01:41:20 -0500870}