blob: 9664a72a089daf4d4551a83227b1f63fa1fe22b8 [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;
54 union perf_event event[0];
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
Adrian Hunter47c3d102013-07-04 16:20:21 +0300100static int perf_event__repipe_attr(struct perf_tool *tool,
101 union perf_event *event,
Jiri Olsa63503db2019-07-21 13:23:52 +0200102 struct evlist **pevlist)
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -0200103{
Adrian Hunter89c97d92013-10-22 10:34:09 +0300104 struct perf_inject *inject = container_of(tool, struct perf_inject,
105 tool);
Stephane Eranian1a1ed1b2012-05-15 13:28:11 +0200106 int ret;
Adrian Hunter47c3d102013-07-04 16:20:21 +0300107
108 ret = perf_event__process_attr(tool, event, pevlist);
Stephane Eranian1a1ed1b2012-05-15 13:28:11 +0200109 if (ret)
110 return ret;
111
Jiri Olsaa261e4a2014-06-05 18:51:44 +0200112 if (!inject->output.is_pipe)
Adrian Hunter89c97d92013-10-22 10:34:09 +0300113 return 0;
114
Adrian Hunter47c3d102013-07-04 16:20:21 +0300115 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -0200116}
117
Adrian Huntere31f0d02015-04-30 17:37:27 +0300118#ifdef HAVE_AUXTRACE_SUPPORT
119
120static int copy_bytes(struct perf_inject *inject, int fd, off_t size)
121{
122 char buf[4096];
123 ssize_t ssz;
124 int ret;
125
126 while (size > 0) {
127 ssz = read(fd, buf, min(size, (off_t)sizeof(buf)));
128 if (ssz < 0)
129 return -errno;
130 ret = output_bytes(inject, buf, ssz);
131 if (ret)
132 return ret;
133 size -= ssz;
134 }
135
136 return 0;
137}
138
Jiri Olsa73365552018-09-13 14:54:04 +0200139static s64 perf_event__repipe_auxtrace(struct perf_session *session,
140 union perf_event *event)
Adrian Huntercd17a9b2015-04-21 12:21:54 +0300141{
Jiri Olsa73365552018-09-13 14:54:04 +0200142 struct perf_tool *tool = session->tool;
Adrian Huntercd17a9b2015-04-21 12:21:54 +0300143 struct perf_inject *inject = container_of(tool, struct perf_inject,
144 tool);
145 int ret;
146
Adrian Huntercd10b282015-04-30 17:37:26 +0300147 inject->have_auxtrace = true;
148
Adrian Hunter99fa2982015-04-30 17:37:25 +0300149 if (!inject->output.is_pipe) {
150 off_t offset;
151
Jiri Olsaeae8ad82017-01-23 22:25:41 +0100152 offset = lseek(inject->output.file.fd, 0, SEEK_CUR);
Adrian Hunter99fa2982015-04-30 17:37:25 +0300153 if (offset == -1)
154 return -errno;
155 ret = auxtrace_index__auxtrace_event(&session->auxtrace_index,
156 event, offset);
157 if (ret < 0)
158 return ret;
159 }
160
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100161 if (perf_data__is_pipe(session->data) || !session->one_mmap) {
Adrian Huntercd17a9b2015-04-21 12:21:54 +0300162 ret = output_bytes(inject, event, event->header.size);
163 if (ret < 0)
164 return ret;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100165 ret = copy_bytes(inject, perf_data__fd(session->data),
Adrian Huntercd17a9b2015-04-21 12:21:54 +0300166 event->auxtrace.size);
167 } else {
168 ret = output_bytes(inject, event,
169 event->header.size + event->auxtrace.size);
170 }
171 if (ret < 0)
172 return ret;
173
174 return event->auxtrace.size;
175}
176
Adrian Huntere31f0d02015-04-30 17:37:27 +0300177#else
178
179static s64
Jiri Olsa73365552018-09-13 14:54:04 +0200180perf_event__repipe_auxtrace(struct perf_session *session __maybe_unused,
181 union perf_event *event __maybe_unused)
Adrian Huntere31f0d02015-04-30 17:37:27 +0300182{
183 pr_err("AUX area tracing not supported\n");
184 return -EINVAL;
185}
186
187#endif
188
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200189static int perf_event__repipe(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200190 union perf_event *event,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300191 struct perf_sample *sample __maybe_unused,
Adrian Hunter63c2c9f2013-07-04 16:20:20 +0300192 struct machine *machine __maybe_unused)
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -0200193{
Adrian Hunter63c2c9f2013-07-04 16:20:20 +0300194 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -0200195}
196
Adrian Hunterf56fb982015-09-25 16:15:55 +0300197static int perf_event__drop(struct perf_tool *tool __maybe_unused,
198 union perf_event *event __maybe_unused,
199 struct perf_sample *sample __maybe_unused,
200 struct machine *machine __maybe_unused)
201{
202 return 0;
203}
204
Adrian Hunter73117302015-09-25 16:15:54 +0300205static int perf_event__drop_aux(struct perf_tool *tool,
206 union perf_event *event __maybe_unused,
207 struct perf_sample *sample,
208 struct machine *machine __maybe_unused)
209{
210 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
211
212 if (!inject->aux_id)
213 inject->aux_id = sample->id;
214
215 return 0;
216}
217
Adrian Hunterba2675b2019-11-15 14:42:18 +0200218static union perf_event *
219perf_inject__cut_auxtrace_sample(struct perf_inject *inject,
220 union perf_event *event,
221 struct perf_sample *sample)
222{
223 size_t sz1 = sample->aux_sample.data - (void *)event;
224 size_t sz2 = event->header.size - sample->aux_sample.size - sz1;
225 union perf_event *ev = (union perf_event *)inject->event_copy;
226
227 if (sz1 > event->header.size || sz2 > event->header.size ||
228 sz1 + sz2 > event->header.size ||
229 sz1 < sizeof(struct perf_event_header) + sizeof(u64))
230 return event;
231
232 memcpy(ev, event, sz1);
233 memcpy((void *)ev + sz1, (void *)event + event->header.size - sz2, sz2);
234 ev->header.size = sz1 + sz2;
235 ((u64 *)((void *)ev + sz1))[-1] = 0;
236
237 return ev;
238}
239
Andrew Vagin26a031e2012-08-07 16:56:04 +0400240typedef int (*inject_handler)(struct perf_tool *tool,
241 union perf_event *event,
242 struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200243 struct evsel *evsel,
Andrew Vagin26a031e2012-08-07 16:56:04 +0400244 struct machine *machine);
245
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200246static int perf_event__repipe_sample(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200247 union perf_event *event,
Andrew Vagin26a031e2012-08-07 16:56:04 +0400248 struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200249 struct evsel *evsel,
Andrew Vagin26a031e2012-08-07 16:56:04 +0400250 struct machine *machine)
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300251{
Adrian Hunterba2675b2019-11-15 14:42:18 +0200252 struct perf_inject *inject = container_of(tool, struct perf_inject,
253 tool);
254
Arnaldo Carvalho de Melo40978e92019-07-03 16:02:09 -0300255 if (evsel && evsel->handler) {
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300256 inject_handler f = evsel->handler;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400257 return f(tool, event, sample, evsel, machine);
258 }
259
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400260 build_id__mark_dso_hit(tool, event, sample, evsel, machine);
261
Adrian Hunterba2675b2019-11-15 14:42:18 +0200262 if (inject->itrace_synth_opts.set && sample->aux_sample.size)
263 event = perf_inject__cut_auxtrace_sample(inject, event, sample);
264
Adrian Hunter63c2c9f2013-07-04 16:20:20 +0300265 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300266}
267
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200268static int perf_event__repipe_mmap(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200269 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200270 struct perf_sample *sample,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200271 struct machine *machine)
Tom Zanussi454c4072010-05-01 01:41:20 -0500272{
273 int err;
274
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200275 err = perf_event__process_mmap(tool, event, sample, machine);
276 perf_event__repipe(tool, event, sample, machine);
Tom Zanussi454c4072010-05-01 01:41:20 -0500277
278 return err;
279}
280
Jiri Olsae12b2022016-03-10 17:41:13 +0100281#ifdef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +0100282static int perf_event__jit_repipe_mmap(struct perf_tool *tool,
283 union perf_event *event,
284 struct perf_sample *sample,
285 struct machine *machine)
286{
287 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
288 u64 n = 0;
Adrian Hunter570735b2016-03-07 16:44:40 -0300289 int ret;
Stephane Eranian9b07e272015-11-30 10:02:21 +0100290
291 /*
292 * if jit marker, then inject jit mmaps and generate ELF images
293 */
Adrian Hunter570735b2016-03-07 16:44:40 -0300294 ret = jit_process(inject->session, &inject->output, machine,
295 event->mmap.filename, sample->pid, &n);
296 if (ret < 0)
297 return ret;
298 if (ret) {
Stephane Eranian9b07e272015-11-30 10:02:21 +0100299 inject->bytes_written += n;
300 return 0;
301 }
302 return perf_event__repipe_mmap(tool, event, sample, machine);
303}
304#endif
305
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200306static int perf_event__repipe_mmap2(struct perf_tool *tool,
307 union perf_event *event,
308 struct perf_sample *sample,
309 struct machine *machine)
310{
311 int err;
312
313 err = perf_event__process_mmap2(tool, event, sample, machine);
314 perf_event__repipe(tool, event, sample, machine);
315
316 return err;
317}
318
Jiri Olsae12b2022016-03-10 17:41:13 +0100319#ifdef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +0100320static int perf_event__jit_repipe_mmap2(struct perf_tool *tool,
321 union perf_event *event,
322 struct perf_sample *sample,
323 struct machine *machine)
324{
325 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
326 u64 n = 0;
Adrian Hunter570735b2016-03-07 16:44:40 -0300327 int ret;
Stephane Eranian9b07e272015-11-30 10:02:21 +0100328
329 /*
330 * if jit marker, then inject jit mmaps and generate ELF images
331 */
Adrian Hunter570735b2016-03-07 16:44:40 -0300332 ret = jit_process(inject->session, &inject->output, machine,
333 event->mmap2.filename, sample->pid, &n);
334 if (ret < 0)
335 return ret;
336 if (ret) {
Stephane Eranian9b07e272015-11-30 10:02:21 +0100337 inject->bytes_written += n;
338 return 0;
339 }
340 return perf_event__repipe_mmap2(tool, event, sample, machine);
341}
342#endif
343
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300344static int perf_event__repipe_fork(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200345 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200346 struct perf_sample *sample,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200347 struct machine *machine)
Tom Zanussi454c4072010-05-01 01:41:20 -0500348{
349 int err;
350
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300351 err = perf_event__process_fork(tool, event, sample, machine);
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200352 perf_event__repipe(tool, event, sample, machine);
Tom Zanussi454c4072010-05-01 01:41:20 -0500353
354 return err;
355}
356
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300357static int perf_event__repipe_comm(struct perf_tool *tool,
358 union perf_event *event,
359 struct perf_sample *sample,
360 struct machine *machine)
361{
362 int err;
363
364 err = perf_event__process_comm(tool, event, sample, machine);
365 perf_event__repipe(tool, event, sample, machine);
366
367 return err;
368}
369
Hari Bathinif3b36142017-03-08 02:11:43 +0530370static int perf_event__repipe_namespaces(struct perf_tool *tool,
371 union perf_event *event,
372 struct perf_sample *sample,
373 struct machine *machine)
374{
375 int err = perf_event__process_namespaces(tool, event, sample, machine);
376
377 perf_event__repipe(tool, event, sample, machine);
378
379 return err;
380}
381
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300382static int perf_event__repipe_exit(struct perf_tool *tool,
383 union perf_event *event,
384 struct perf_sample *sample,
385 struct machine *machine)
386{
387 int err;
388
389 err = perf_event__process_exit(tool, event, sample, machine);
390 perf_event__repipe(tool, event, sample, machine);
391
392 return err;
393}
394
Jiri Olsa89f16882018-09-13 14:54:03 +0200395static int perf_event__repipe_tracing_data(struct perf_session *session,
396 union perf_event *event)
Tom Zanussi454c4072010-05-01 01:41:20 -0500397{
398 int err;
399
Jiri Olsa89f16882018-09-13 14:54:03 +0200400 perf_event__repipe_synth(session->tool, event);
401 err = perf_event__process_tracing_data(session, event);
Tom Zanussi454c4072010-05-01 01:41:20 -0500402
403 return err;
404}
405
Jiri Olsa89f16882018-09-13 14:54:03 +0200406static int perf_event__repipe_id_index(struct perf_session *session,
407 union perf_event *event)
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300408{
409 int err;
410
Jiri Olsa89f16882018-09-13 14:54:03 +0200411 perf_event__repipe_synth(session->tool, event);
412 err = perf_event__process_id_index(session, event);
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300413
414 return err;
415}
416
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300417static int dso__read_build_id(struct dso *dso)
Tom Zanussi454c4072010-05-01 01:41:20 -0500418{
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300419 if (dso->has_build_id)
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300420 return 0;
Tom Zanussi454c4072010-05-01 01:41:20 -0500421
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300422 if (filename__read_build_id(dso->long_name, dso->build_id,
423 sizeof(dso->build_id)) > 0) {
424 dso->has_build_id = true;
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300425 return 0;
Tom Zanussi454c4072010-05-01 01:41:20 -0500426 }
427
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300428 return -1;
429}
Tom Zanussi454c4072010-05-01 01:41:20 -0500430
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300431static int dso__inject_build_id(struct dso *dso, struct perf_tool *tool,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200432 struct machine *machine)
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300433{
434 u16 misc = PERF_RECORD_MISC_USER;
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300435 int err;
Tom Zanussi454c4072010-05-01 01:41:20 -0500436
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300437 if (dso__read_build_id(dso) < 0) {
438 pr_debug("no build_id found for %s\n", dso->long_name);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300439 return -1;
440 }
Tom Zanussi454c4072010-05-01 01:41:20 -0500441
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300442 if (dso->kernel)
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300443 misc = PERF_RECORD_MISC_KERNEL;
444
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300445 err = perf_event__synthesize_build_id(tool, dso, misc, perf_event__repipe,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200446 machine);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300447 if (err) {
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300448 pr_err("Can't synthesize build_id event for %s\n", dso->long_name);
Tom Zanussi454c4072010-05-01 01:41:20 -0500449 return -1;
450 }
451
452 return 0;
453}
454
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200455static int perf_event__inject_buildid(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200456 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200457 struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200458 struct evsel *evsel __maybe_unused,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200459 struct machine *machine)
Tom Zanussi454c4072010-05-01 01:41:20 -0500460{
461 struct addr_location al;
462 struct thread *thread;
Tom Zanussi454c4072010-05-01 01:41:20 -0500463
Namhyung Kim13ce34d2014-05-12 09:56:42 +0900464 thread = machine__findnew_thread(machine, sample->pid, sample->tid);
Tom Zanussi454c4072010-05-01 01:41:20 -0500465 if (thread == NULL) {
466 pr_err("problem processing %d event, skipping it.\n",
467 event->header.type);
Tom Zanussi454c4072010-05-01 01:41:20 -0500468 goto repipe;
469 }
470
Arnaldo Carvalho de Melo71a84b52018-04-24 11:58:56 -0300471 if (thread__find_map(thread, sample->cpumode, sample->ip, &al)) {
Tom Zanussi454c4072010-05-01 01:41:20 -0500472 if (!al.map->dso->hit) {
473 al.map->dso->hit = 1;
Arnaldo Carvalho de Melobe39db92016-09-01 19:25:52 -0300474 if (map__load(al.map) >= 0) {
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200475 dso__inject_build_id(al.map->dso, tool, machine);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300476 /*
477 * If this fails, too bad, let the other side
478 * account this as unresolved.
479 */
Namhyung Kim393be2e2012-08-06 13:41:21 +0900480 } else {
Ingo Molnar89fe8082013-09-30 12:07:11 +0200481#ifdef HAVE_LIBELF_SUPPORT
Tom Zanussi454c4072010-05-01 01:41:20 -0500482 pr_warning("no symbols found in %s, maybe "
483 "install a debug package?\n",
484 al.map->dso->long_name);
Namhyung Kim393be2e2012-08-06 13:41:21 +0900485#endif
486 }
Tom Zanussi454c4072010-05-01 01:41:20 -0500487 }
488 }
489
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300490 thread__put(thread);
Tom Zanussi454c4072010-05-01 01:41:20 -0500491repipe:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200492 perf_event__repipe(tool, event, sample, machine);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300493 return 0;
Tom Zanussi454c4072010-05-01 01:41:20 -0500494}
495
Andrew Vagin26a031e2012-08-07 16:56:04 +0400496static int perf_inject__sched_process_exit(struct perf_tool *tool,
497 union perf_event *event __maybe_unused,
498 struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200499 struct evsel *evsel __maybe_unused,
Andrew Vagin26a031e2012-08-07 16:56:04 +0400500 struct machine *machine __maybe_unused)
501{
502 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
503 struct event_entry *ent;
504
505 list_for_each_entry(ent, &inject->samples, node) {
506 if (sample->tid == ent->tid) {
507 list_del_init(&ent->node);
508 free(ent);
509 break;
510 }
511 }
512
513 return 0;
514}
515
516static int perf_inject__sched_switch(struct perf_tool *tool,
517 union perf_event *event,
518 struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200519 struct evsel *evsel,
Andrew Vagin26a031e2012-08-07 16:56:04 +0400520 struct machine *machine)
521{
522 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
523 struct event_entry *ent;
524
525 perf_inject__sched_process_exit(tool, event, sample, evsel, machine);
526
527 ent = malloc(event->header.size + sizeof(struct event_entry));
528 if (ent == NULL) {
529 color_fprintf(stderr, PERF_COLOR_RED,
530 "Not enough memory to process sched switch event!");
531 return -1;
532 }
533
534 ent->tid = sample->tid;
535 memcpy(&ent->event, event, event->header.size);
536 list_add(&ent->node, &inject->samples);
537 return 0;
538}
539
540static int perf_inject__sched_stat(struct perf_tool *tool,
541 union perf_event *event __maybe_unused,
542 struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200543 struct evsel *evsel,
Andrew Vagin26a031e2012-08-07 16:56:04 +0400544 struct machine *machine)
545{
546 struct event_entry *ent;
547 union perf_event *event_sw;
548 struct perf_sample sample_sw;
549 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
550 u32 pid = perf_evsel__intval(evsel, sample, "pid");
551
552 list_for_each_entry(ent, &inject->samples, node) {
553 if (pid == ent->tid)
554 goto found;
555 }
556
557 return 0;
558found:
559 event_sw = &ent->event[0];
560 perf_evsel__parse_sample(evsel, event_sw, &sample_sw);
561
562 sample_sw.period = sample->period;
563 sample_sw.time = sample->time;
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200564 perf_event__synthesize_sample(event_sw, evsel->core.attr.sample_type,
565 evsel->core.attr.read_format, &sample_sw);
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400566 build_id__mark_dso_hit(tool, event_sw, &sample_sw, evsel, machine);
Andrew Vagin26a031e2012-08-07 16:56:04 +0400567 return perf_event__repipe(tool, event_sw, &sample_sw, machine);
568}
569
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300570static void sig_handler(int sig __maybe_unused)
Tom Zanussi454c4072010-05-01 01:41:20 -0500571{
572 session_done = 1;
573}
574
Jiri Olsa32dcd022019-07-21 13:23:51 +0200575static int perf_evsel__check_stype(struct evsel *evsel,
Andrew Vagin26a031e2012-08-07 16:56:04 +0400576 u64 sample_type, const char *sample_msg)
577{
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200578 struct perf_event_attr *attr = &evsel->core.attr;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400579 const char *name = perf_evsel__name(evsel);
580
581 if (!(attr->sample_type & sample_type)) {
582 pr_err("Samples for %s event do not have %s attribute set.",
583 name, sample_msg);
584 return -EINVAL;
585 }
586
587 return 0;
588}
589
Adrian Hunterf56fb982015-09-25 16:15:55 +0300590static int drop_sample(struct perf_tool *tool __maybe_unused,
591 union perf_event *event __maybe_unused,
592 struct perf_sample *sample __maybe_unused,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200593 struct evsel *evsel __maybe_unused,
Adrian Hunterf56fb982015-09-25 16:15:55 +0300594 struct machine *machine __maybe_unused)
595{
596 return 0;
597}
598
599static void strip_init(struct perf_inject *inject)
600{
Jiri Olsa63503db2019-07-21 13:23:52 +0200601 struct evlist *evlist = inject->session->evlist;
Jiri Olsa32dcd022019-07-21 13:23:51 +0200602 struct evsel *evsel;
Adrian Hunterf56fb982015-09-25 16:15:55 +0300603
604 inject->tool.context_switch = perf_event__drop;
605
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300606 evlist__for_each_entry(evlist, evsel)
Adrian Hunterf56fb982015-09-25 16:15:55 +0300607 evsel->handler = drop_sample;
608}
609
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300610static int __cmd_inject(struct perf_inject *inject)
Tom Zanussi454c4072010-05-01 01:41:20 -0500611{
Tom Zanussi454c4072010-05-01 01:41:20 -0500612 int ret = -EINVAL;
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900613 struct perf_session *session = inject->session;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100614 struct perf_data *data_out = &inject->output;
615 int fd = perf_data__fd(data_out);
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300616 u64 output_data_offset;
Tom Zanussi454c4072010-05-01 01:41:20 -0500617
618 signal(SIGINT, sig_handler);
619
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300620 if (inject->build_ids || inject->sched_stat ||
621 inject->itrace_synth_opts.set) {
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300622 inject->tool.mmap = perf_event__repipe_mmap;
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200623 inject->tool.mmap2 = perf_event__repipe_mmap2;
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300624 inject->tool.fork = perf_event__repipe_fork;
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300625 inject->tool.tracing_data = perf_event__repipe_tracing_data;
Tom Zanussi454c4072010-05-01 01:41:20 -0500626 }
627
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300628 output_data_offset = session->header.data_offset;
629
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400630 if (inject->build_ids) {
631 inject->tool.sample = perf_event__inject_buildid;
632 } else if (inject->sched_stat) {
Jiri Olsa32dcd022019-07-21 13:23:51 +0200633 struct evsel *evsel;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400634
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300635 evlist__for_each_entry(session->evlist, evsel) {
Andrew Vagin26a031e2012-08-07 16:56:04 +0400636 const char *name = perf_evsel__name(evsel);
637
638 if (!strcmp(name, "sched:sched_switch")) {
639 if (perf_evsel__check_stype(evsel, PERF_SAMPLE_TID, "TID"))
640 return -EINVAL;
641
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300642 evsel->handler = perf_inject__sched_switch;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400643 } else if (!strcmp(name, "sched:sched_process_exit"))
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300644 evsel->handler = perf_inject__sched_process_exit;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400645 else if (!strncmp(name, "sched:sched_stat_", 17))
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300646 evsel->handler = perf_inject__sched_stat;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400647 }
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300648 } else if (inject->itrace_synth_opts.set) {
649 session->itrace_synth_opts = &inject->itrace_synth_opts;
650 inject->itrace_synth_opts.inject = true;
651 inject->tool.comm = perf_event__repipe_comm;
Hari Bathinif3b36142017-03-08 02:11:43 +0530652 inject->tool.namespaces = perf_event__repipe_namespaces;
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300653 inject->tool.exit = perf_event__repipe_exit;
654 inject->tool.id_index = perf_event__repipe_id_index;
655 inject->tool.auxtrace_info = perf_event__process_auxtrace_info;
656 inject->tool.auxtrace = perf_event__process_auxtrace;
Adrian Hunter73117302015-09-25 16:15:54 +0300657 inject->tool.aux = perf_event__drop_aux;
658 inject->tool.itrace_start = perf_event__drop_aux,
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300659 inject->tool.ordered_events = true;
660 inject->tool.ordering_requires_timestamps = true;
661 /* Allow space in the header for new attributes */
662 output_data_offset = 4096;
Adrian Hunterf56fb982015-09-25 16:15:55 +0300663 if (inject->strip)
664 strip_init(inject);
Andrew Vagin26a031e2012-08-07 16:56:04 +0400665 }
666
Adrian Hunter99fa2982015-04-30 17:37:25 +0300667 if (!inject->itrace_synth_opts.set)
668 auxtrace_index__free(&session->auxtrace_index);
669
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100670 if (!data_out->is_pipe)
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300671 lseek(fd, output_data_offset, SEEK_SET);
Andrew Vagine558a5b2012-08-07 16:56:02 +0400672
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -0300673 ret = perf_session__process_events(session);
David Carrillo-Cisnerosbb8d5212017-04-10 13:14:26 -0700674 if (ret)
675 return ret;
Tom Zanussi454c4072010-05-01 01:41:20 -0500676
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100677 if (!data_out->is_pipe) {
Adrian Hunter640dad42016-03-07 16:44:38 -0300678 if (inject->build_ids)
Adrian Huntere38b43c2014-07-14 13:02:34 +0300679 perf_header__set_feat(&session->header,
680 HEADER_BUILD_ID);
Adrian Hunter640dad42016-03-07 16:44:38 -0300681 /*
682 * Keep all buildids when there is unprocessed AUX data because
683 * it is not known which ones the AUX trace hits.
684 */
685 if (perf_header__has_feat(&session->header, HEADER_BUILD_ID) &&
686 inject->have_auxtrace && !inject->itrace_synth_opts.set)
687 dsos__hit_all(session);
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300688 /*
689 * The AUX areas have been removed and replaced with
Adrian Hunter73117302015-09-25 16:15:54 +0300690 * synthesized hardware events, so clear the feature flag and
691 * remove the evsel.
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300692 */
Adrian Hunter051a01b2015-09-25 16:15:43 +0300693 if (inject->itrace_synth_opts.set) {
Jiri Olsa32dcd022019-07-21 13:23:51 +0200694 struct evsel *evsel;
Adrian Hunter73117302015-09-25 16:15:54 +0300695
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300696 perf_header__clear_feat(&session->header,
697 HEADER_AUXTRACE);
Adrian Hunter051a01b2015-09-25 16:15:43 +0300698 if (inject->itrace_synth_opts.last_branch)
699 perf_header__set_feat(&session->header,
700 HEADER_BRANCH_STACK);
Adrian Hunter73117302015-09-25 16:15:54 +0300701 evsel = perf_evlist__id2evsel_strict(session->evlist,
702 inject->aux_id);
703 if (evsel) {
704 pr_debug("Deleting %s\n",
705 perf_evsel__name(evsel));
Jiri Olsa16251022019-07-21 13:24:00 +0200706 evlist__remove(session->evlist, evsel);
Jiri Olsa5eb2dd22019-07-21 13:23:57 +0200707 evsel__delete(evsel);
Adrian Hunter73117302015-09-25 16:15:54 +0300708 }
Adrian Hunter051a01b2015-09-25 16:15:43 +0300709 }
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300710 session->header.data_offset = output_data_offset;
Andrew Vagine558a5b2012-08-07 16:56:02 +0400711 session->header.data_size = inject->bytes_written;
Namhyung Kim42aa2762015-01-29 17:06:48 +0900712 perf_session__write_header(session, session->evlist, fd, true);
Andrew Vagine558a5b2012-08-07 16:56:02 +0400713 }
714
Tom Zanussi454c4072010-05-01 01:41:20 -0500715 return ret;
716}
717
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -0300718int cmd_inject(int argc, const char **argv)
Tom Zanussi454c4072010-05-01 01:41:20 -0500719{
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300720 struct perf_inject inject = {
721 .tool = {
722 .sample = perf_event__repipe_sample,
723 .mmap = perf_event__repipe,
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200724 .mmap2 = perf_event__repipe,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300725 .comm = perf_event__repipe,
726 .fork = perf_event__repipe,
727 .exit = perf_event__repipe,
728 .lost = perf_event__repipe,
Adrian Hunterd8145b32015-11-13 11:48:32 +0200729 .lost_samples = perf_event__repipe,
Adrian Hunter4a96f7a2015-04-30 17:37:29 +0300730 .aux = perf_event__repipe,
Adrian Hunter0ad21f62015-04-30 17:37:30 +0300731 .itrace_start = perf_event__repipe,
Adrian Hunter02860392015-07-21 12:44:03 +0300732 .context_switch = perf_event__repipe,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300733 .read = perf_event__repipe_sample,
734 .throttle = perf_event__repipe,
735 .unthrottle = perf_event__repipe,
736 .attr = perf_event__repipe_attr,
Adrian Hunter47c3d102013-07-04 16:20:21 +0300737 .tracing_data = perf_event__repipe_op2_synth,
Adrian Huntercd17a9b2015-04-21 12:21:54 +0300738 .auxtrace_info = perf_event__repipe_op2_synth,
739 .auxtrace = perf_event__repipe_auxtrace,
740 .auxtrace_error = perf_event__repipe_op2_synth,
Adrian Hunter46bc29b2016-03-08 10:38:44 +0200741 .time_conv = perf_event__repipe_op2_synth,
Arnaldo Carvalho de Melod704ebd2015-03-03 12:37:54 -0300742 .finished_round = perf_event__repipe_oe_synth,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300743 .build_id = perf_event__repipe_op2_synth,
Adrian Hunter3c659ee2014-10-27 15:49:22 +0200744 .id_index = perf_event__repipe_op2_synth,
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -0700745 .feature = perf_event__repipe_op2_synth,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300746 },
Andrew Vagine558a5b2012-08-07 16:56:02 +0400747 .input_name = "-",
Andrew Vagin26a031e2012-08-07 16:56:04 +0400748 .samples = LIST_HEAD_INIT(inject.samples),
Jiri Olsa34069122013-10-29 19:04:57 +0100749 .output = {
Jiri Olsa2d4f2792019-02-21 10:41:30 +0100750 .path = "-",
751 .mode = PERF_DATA_MODE_WRITE,
Jiri Olsa34069122013-10-29 19:04:57 +0100752 },
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300753 };
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100754 struct perf_data data = {
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900755 .mode = PERF_DATA_MODE_READ,
756 };
757 int ret;
758
Stephane Eranian9b07e272015-11-30 10:02:21 +0100759 struct option options[] = {
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300760 OPT_BOOLEAN('b', "build-ids", &inject.build_ids,
761 "Inject build-ids into the output stream"),
Andrew Vagine558a5b2012-08-07 16:56:02 +0400762 OPT_STRING('i', "input", &inject.input_name, "file",
763 "input file name"),
Jiri Olsa2d4f2792019-02-21 10:41:30 +0100764 OPT_STRING('o', "output", &inject.output.path, "file",
Andrew Vagine558a5b2012-08-07 16:56:02 +0400765 "output file name"),
Andrew Vagin26a031e2012-08-07 16:56:04 +0400766 OPT_BOOLEAN('s', "sched-stat", &inject.sched_stat,
767 "Merge sched-stat and sched-switch for getting events "
768 "where and how long tasks slept"),
Jiri Olsae12b2022016-03-10 17:41:13 +0100769#ifdef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +0100770 OPT_BOOLEAN('j', "jit", &inject.jit_mode, "merge jitdump files into perf.data file"),
Jiri Olsae12b2022016-03-10 17:41:13 +0100771#endif
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300772 OPT_INCR('v', "verbose", &verbose,
773 "be more verbose (show build ids, etc)"),
Adrian Huntera7a2b8b2014-07-22 16:17:38 +0300774 OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name, "file",
775 "kallsyms pathname"),
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100776 OPT_BOOLEAN('f', "force", &data.force, "don't complain, do it"),
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300777 OPT_CALLBACK_OPTARG(0, "itrace", &inject.itrace_synth_opts,
Andi Kleenc12e0392018-09-13 20:10:31 -0700778 NULL, "opts", "Instruction Tracing options\n"
779 ITRACE_HELP,
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300780 itrace_parse_synth_opts),
Adrian Hunterf56fb982015-09-25 16:15:55 +0300781 OPT_BOOLEAN(0, "strip", &inject.strip,
782 "strip non-synthesized events (use with --itrace)"),
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300783 OPT_END()
784 };
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300785 const char * const inject_usage[] = {
786 "perf inject [<options>]",
787 NULL
788 };
Jiri Olsae12b2022016-03-10 17:41:13 +0100789#ifndef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +0100790 set_option_nobuild(options, 'j', "jit", "NO_LIBELF=1", true);
791#endif
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300792 argc = parse_options(argc, argv, options, inject_usage, 0);
Tom Zanussi454c4072010-05-01 01:41:20 -0500793
794 /*
795 * Any (unrecognized) arguments left?
796 */
797 if (argc)
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300798 usage_with_options(inject_usage, options);
Tom Zanussi454c4072010-05-01 01:41:20 -0500799
Adrian Hunterf56fb982015-09-25 16:15:55 +0300800 if (inject.strip && !inject.itrace_synth_opts.set) {
801 pr_err("--strip option requires --itrace option\n");
802 return -1;
803 }
804
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100805 if (perf_data__open(&inject.output)) {
Jiri Olsa34069122013-10-29 19:04:57 +0100806 perror("failed to create output file");
807 return -1;
Andrew Vagine558a5b2012-08-07 16:56:02 +0400808 }
809
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -0300810 inject.tool.ordered_events = inject.sched_stat;
811
Jiri Olsa2d4f2792019-02-21 10:41:30 +0100812 data.path = inject.input_name;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100813 inject.session = perf_session__new(&data, true, &inject.tool);
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +0530814 if (IS_ERR(inject.session))
815 return PTR_ERR(inject.session);
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900816
Alexey Budankov371a3372019-03-18 20:45:44 +0300817 if (zstd_init(&(inject.session->zstd_data), 0) < 0)
818 pr_warning("Decompression initialization failed.\n");
819
Arnaldo Carvalho de Melo921f3fa2016-01-22 18:41:00 -0300820 if (inject.build_ids) {
821 /*
822 * to make sure the mmap records are ordered correctly
823 * and so that the correct especially due to jitted code
824 * mmaps. We cannot generate the buildid hit list and
825 * inject the jit mmaps at the same time for now.
826 */
827 inject.tool.ordered_events = true;
828 inject.tool.ordering_requires_timestamps = true;
829 }
Jiri Olsae12b2022016-03-10 17:41:13 +0100830#ifdef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +0100831 if (inject.jit_mode) {
Stephane Eranian9b07e272015-11-30 10:02:21 +0100832 inject.tool.mmap2 = perf_event__jit_repipe_mmap2;
833 inject.tool.mmap = perf_event__jit_repipe_mmap;
834 inject.tool.ordered_events = true;
835 inject.tool.ordering_requires_timestamps = true;
836 /*
837 * JIT MMAP injection injects all MMAP events in one go, so it
838 * does not obey finished_round semantics.
839 */
840 inject.tool.finished_round = perf_event__drop_oe;
841 }
842#endif
Taeung Song9fedfb02015-06-30 17:15:20 +0900843 ret = symbol__init(&inject.session->header.env);
844 if (ret < 0)
845 goto out_delete;
Tom Zanussi454c4072010-05-01 01:41:20 -0500846
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900847 ret = __cmd_inject(&inject);
848
Taeung Song9fedfb02015-06-30 17:15:20 +0900849out_delete:
Alexey Budankov371a3372019-03-18 20:45:44 +0300850 zstd_fini(&(inject.session->zstd_data));
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900851 perf_session__delete(inject.session);
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900852 return ret;
Tom Zanussi454c4072010-05-01 01:41:20 -0500853}