blob: 102cafb0c0b3fe1f7bc9099b9cfdd6c70ff2da44 [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"
Namhyung Kim27c9c342020-10-12 16:02:13 +090013#include "util/vdso.h"
Andrew Vagin26a031e2012-08-07 16:56:04 +040014#include "util/evlist.h"
15#include "util/evsel.h"
Arnaldo Carvalho de Melo1101f692019-01-27 13:42:37 +010016#include "util/map.h"
Tom Zanussi454c4072010-05-01 01:41:20 -050017#include "util/session.h"
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020018#include "util/tool.h"
Tom Zanussi454c4072010-05-01 01:41:20 -050019#include "util/debug.h"
Andrew Vagin54a3cf52012-08-07 16:56:05 +040020#include "util/build-id.h"
Jiri Olsaf5fc14122013-10-15 16:27:32 +020021#include "util/data.h"
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +030022#include "util/auxtrace.h"
Stephane Eranian9b07e272015-11-30 10:02:21 +010023#include "util/jit.h"
Arnaldo Carvalho de Melodaecf9e2019-01-28 00:03:34 +010024#include "util/symbol.h"
Arnaldo Carvalho de Meloea49e012019-09-18 11:36:13 -030025#include "util/synthetic-events.h"
Arnaldo Carvalho de Meloe7ff8922017-04-19 21:34:35 -030026#include "util/thread.h"
Namhyung Kim336c95b2020-10-12 16:02:11 +090027#include "util/namespaces.h"
Tom Zanussi454c4072010-05-01 01:41:20 -050028
Namhyung Kime7b60c52020-10-12 16:02:12 +090029#include <linux/err.h>
Josh Poimboeuf4b6ab942015-12-15 09:39:39 -060030#include <subcmd/parse-options.h>
Namhyung Kime7b60c52020-10-12 16:02:12 +090031#include <uapi/linux/mman.h> /* To get things like MAP_HUGETLB even on older libc headers */
Tom Zanussi454c4072010-05-01 01:41:20 -050032
Andrew Vagin26a031e2012-08-07 16:56:04 +040033#include <linux/list.h>
Adrian Hunter83d7f5f2021-04-30 10:03:02 +030034#include <linux/string.h>
Arnaldo Carvalho de Meloa43783a2017-04-18 10:46:11 -030035#include <errno.h>
Arnaldo Carvalho de Melo9607ad32017-04-19 15:49:18 -030036#include <signal.h>
Andrew Vagin26a031e2012-08-07 16:56:04 +040037
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -030038struct perf_inject {
Jiri Olsa34069122013-10-29 19:04:57 +010039 struct perf_tool tool;
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +090040 struct perf_session *session;
Jiri Olsa34069122013-10-29 19:04:57 +010041 bool build_ids;
Namhyung Kim27c9c342020-10-12 16:02:13 +090042 bool build_id_all;
Jiri Olsa34069122013-10-29 19:04:57 +010043 bool sched_stat;
Adrian Huntercd10b282015-04-30 17:37:26 +030044 bool have_auxtrace;
Adrian Hunterf56fb982015-09-25 16:15:55 +030045 bool strip;
Stephane Eranian9b07e272015-11-30 10:02:21 +010046 bool jit_mode;
Adrian Hunter2a525f62021-04-30 10:03:01 +030047 bool in_place_update;
48 bool in_place_update_dry_run;
Jiri Olsa34069122013-10-29 19:04:57 +010049 const char *input_name;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +010050 struct perf_data output;
Jiri Olsa34069122013-10-29 19:04:57 +010051 u64 bytes_written;
Adrian Hunter73117302015-09-25 16:15:54 +030052 u64 aux_id;
Jiri Olsa34069122013-10-29 19:04:57 +010053 struct list_head samples;
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +030054 struct itrace_synth_opts itrace_synth_opts;
Adrian Hunterba2675b2019-11-15 14:42:18 +020055 char event_copy[PERF_SAMPLE_MAX_SIZE];
Andrew Vagin26a031e2012-08-07 16:56:04 +040056};
57
58struct event_entry {
59 struct list_head node;
60 u32 tid;
Gustavo A. R. Silva6549a8c2020-05-15 12:29:26 -050061 union perf_event event[];
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -030062};
Tom Zanussi454c4072010-05-01 01:41:20 -050063
Namhyung Kim27c9c342020-10-12 16:02:13 +090064static int dso__inject_build_id(struct dso *dso, struct perf_tool *tool,
65 struct machine *machine, u8 cpumode, u32 flags);
66
Adrian Huntercd17a9b2015-04-21 12:21:54 +030067static int output_bytes(struct perf_inject *inject, void *buf, size_t sz)
Tom Zanussi454c4072010-05-01 01:41:20 -050068{
Jiri Olsa34069122013-10-29 19:04:57 +010069 ssize_t size;
Tom Zanussi454c4072010-05-01 01:41:20 -050070
Jiri Olsa8ceb41d2017-01-23 22:07:59 +010071 size = perf_data__write(&inject->output, buf, sz);
Jiri Olsa34069122013-10-29 19:04:57 +010072 if (size < 0)
73 return -errno;
Tom Zanussi454c4072010-05-01 01:41:20 -050074
Jiri Olsa34069122013-10-29 19:04:57 +010075 inject->bytes_written += size;
Tom Zanussi454c4072010-05-01 01:41:20 -050076 return 0;
77}
78
Adrian Huntercd17a9b2015-04-21 12:21:54 +030079static int perf_event__repipe_synth(struct perf_tool *tool,
80 union perf_event *event)
81{
82 struct perf_inject *inject = container_of(tool, struct perf_inject,
83 tool);
84
85 return output_bytes(inject, event, event->header.size);
86}
87
Arnaldo Carvalho de Melod704ebd2015-03-03 12:37:54 -030088static int perf_event__repipe_oe_synth(struct perf_tool *tool,
89 union perf_event *event,
90 struct ordered_events *oe __maybe_unused)
91{
92 return perf_event__repipe_synth(tool, event);
93}
94
Jiri Olsae12b2022016-03-10 17:41:13 +010095#ifdef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +010096static int perf_event__drop_oe(struct perf_tool *tool __maybe_unused,
97 union perf_event *event __maybe_unused,
98 struct ordered_events *oe __maybe_unused)
99{
100 return 0;
101}
102#endif
103
Jiri Olsa89f16882018-09-13 14:54:03 +0200104static int perf_event__repipe_op2_synth(struct perf_session *session,
105 union perf_event *event)
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200106{
Jiri Olsa89f16882018-09-13 14:54:03 +0200107 return perf_event__repipe_synth(session->tool, event);
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200108}
109
Namhyung Kim2946ece2020-10-12 16:02:10 +0900110static int perf_event__repipe_op4_synth(struct perf_session *session,
111 union perf_event *event,
112 u64 data __maybe_unused)
113{
114 return perf_event__repipe_synth(session->tool, event);
115}
116
Adrian Hunter47c3d102013-07-04 16:20:21 +0300117static int perf_event__repipe_attr(struct perf_tool *tool,
118 union perf_event *event,
Jiri Olsa63503db2019-07-21 13:23:52 +0200119 struct evlist **pevlist)
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -0200120{
Adrian Hunter89c97d92013-10-22 10:34:09 +0300121 struct perf_inject *inject = container_of(tool, struct perf_inject,
122 tool);
Stephane Eranian1a1ed1b2012-05-15 13:28:11 +0200123 int ret;
Adrian Hunter47c3d102013-07-04 16:20:21 +0300124
125 ret = perf_event__process_attr(tool, event, pevlist);
Stephane Eranian1a1ed1b2012-05-15 13:28:11 +0200126 if (ret)
127 return ret;
128
Jiri Olsaa261e4a2014-06-05 18:51:44 +0200129 if (!inject->output.is_pipe)
Adrian Hunter89c97d92013-10-22 10:34:09 +0300130 return 0;
131
Adrian Hunter47c3d102013-07-04 16:20:21 +0300132 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -0200133}
134
Namhyung Kim2946ece2020-10-12 16:02:10 +0900135static int perf_event__repipe_event_update(struct perf_tool *tool,
136 union perf_event *event,
137 struct evlist **pevlist __maybe_unused)
138{
139 return perf_event__repipe_synth(tool, event);
140}
141
Adrian Huntere31f0d02015-04-30 17:37:27 +0300142#ifdef HAVE_AUXTRACE_SUPPORT
143
144static int copy_bytes(struct perf_inject *inject, int fd, off_t size)
145{
146 char buf[4096];
147 ssize_t ssz;
148 int ret;
149
150 while (size > 0) {
151 ssz = read(fd, buf, min(size, (off_t)sizeof(buf)));
152 if (ssz < 0)
153 return -errno;
154 ret = output_bytes(inject, buf, ssz);
155 if (ret)
156 return ret;
157 size -= ssz;
158 }
159
160 return 0;
161}
162
Jiri Olsa73365552018-09-13 14:54:04 +0200163static s64 perf_event__repipe_auxtrace(struct perf_session *session,
164 union perf_event *event)
Adrian Huntercd17a9b2015-04-21 12:21:54 +0300165{
Jiri Olsa73365552018-09-13 14:54:04 +0200166 struct perf_tool *tool = session->tool;
Adrian Huntercd17a9b2015-04-21 12:21:54 +0300167 struct perf_inject *inject = container_of(tool, struct perf_inject,
168 tool);
169 int ret;
170
Adrian Huntercd10b282015-04-30 17:37:26 +0300171 inject->have_auxtrace = true;
172
Adrian Hunter99fa2982015-04-30 17:37:25 +0300173 if (!inject->output.is_pipe) {
174 off_t offset;
175
Jiri Olsaeae8ad82017-01-23 22:25:41 +0100176 offset = lseek(inject->output.file.fd, 0, SEEK_CUR);
Adrian Hunter99fa2982015-04-30 17:37:25 +0300177 if (offset == -1)
178 return -errno;
179 ret = auxtrace_index__auxtrace_event(&session->auxtrace_index,
180 event, offset);
181 if (ret < 0)
182 return ret;
183 }
184
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100185 if (perf_data__is_pipe(session->data) || !session->one_mmap) {
Adrian Huntercd17a9b2015-04-21 12:21:54 +0300186 ret = output_bytes(inject, event, event->header.size);
187 if (ret < 0)
188 return ret;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100189 ret = copy_bytes(inject, perf_data__fd(session->data),
Adrian Huntercd17a9b2015-04-21 12:21:54 +0300190 event->auxtrace.size);
191 } else {
192 ret = output_bytes(inject, event,
193 event->header.size + event->auxtrace.size);
194 }
195 if (ret < 0)
196 return ret;
197
198 return event->auxtrace.size;
199}
200
Adrian Huntere31f0d02015-04-30 17:37:27 +0300201#else
202
203static s64
Jiri Olsa73365552018-09-13 14:54:04 +0200204perf_event__repipe_auxtrace(struct perf_session *session __maybe_unused,
205 union perf_event *event __maybe_unused)
Adrian Huntere31f0d02015-04-30 17:37:27 +0300206{
207 pr_err("AUX area tracing not supported\n");
208 return -EINVAL;
209}
210
211#endif
212
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200213static int perf_event__repipe(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200214 union perf_event *event,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300215 struct perf_sample *sample __maybe_unused,
Adrian Hunter63c2c9f2013-07-04 16:20:20 +0300216 struct machine *machine __maybe_unused)
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -0200217{
Adrian Hunter63c2c9f2013-07-04 16:20:20 +0300218 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -0200219}
220
Adrian Hunterf56fb982015-09-25 16:15:55 +0300221static int perf_event__drop(struct perf_tool *tool __maybe_unused,
222 union perf_event *event __maybe_unused,
223 struct perf_sample *sample __maybe_unused,
224 struct machine *machine __maybe_unused)
225{
226 return 0;
227}
228
Adrian Hunter73117302015-09-25 16:15:54 +0300229static int perf_event__drop_aux(struct perf_tool *tool,
230 union perf_event *event __maybe_unused,
231 struct perf_sample *sample,
232 struct machine *machine __maybe_unused)
233{
234 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
235
236 if (!inject->aux_id)
237 inject->aux_id = sample->id;
238
239 return 0;
240}
241
Adrian Hunterba2675b2019-11-15 14:42:18 +0200242static union perf_event *
243perf_inject__cut_auxtrace_sample(struct perf_inject *inject,
244 union perf_event *event,
245 struct perf_sample *sample)
246{
247 size_t sz1 = sample->aux_sample.data - (void *)event;
248 size_t sz2 = event->header.size - sample->aux_sample.size - sz1;
249 union perf_event *ev = (union perf_event *)inject->event_copy;
250
251 if (sz1 > event->header.size || sz2 > event->header.size ||
252 sz1 + sz2 > event->header.size ||
253 sz1 < sizeof(struct perf_event_header) + sizeof(u64))
254 return event;
255
256 memcpy(ev, event, sz1);
257 memcpy((void *)ev + sz1, (void *)event + event->header.size - sz2, sz2);
258 ev->header.size = sz1 + sz2;
259 ((u64 *)((void *)ev + sz1))[-1] = 0;
260
261 return ev;
262}
263
Andrew Vagin26a031e2012-08-07 16:56:04 +0400264typedef int (*inject_handler)(struct perf_tool *tool,
265 union perf_event *event,
266 struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200267 struct evsel *evsel,
Andrew Vagin26a031e2012-08-07 16:56:04 +0400268 struct machine *machine);
269
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200270static int perf_event__repipe_sample(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200271 union perf_event *event,
Andrew Vagin26a031e2012-08-07 16:56:04 +0400272 struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200273 struct evsel *evsel,
Andrew Vagin26a031e2012-08-07 16:56:04 +0400274 struct machine *machine)
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300275{
Adrian Hunterba2675b2019-11-15 14:42:18 +0200276 struct perf_inject *inject = container_of(tool, struct perf_inject,
277 tool);
278
Arnaldo Carvalho de Melo40978e92019-07-03 16:02:09 -0300279 if (evsel && evsel->handler) {
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300280 inject_handler f = evsel->handler;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400281 return f(tool, event, sample, evsel, machine);
282 }
283
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400284 build_id__mark_dso_hit(tool, event, sample, evsel, machine);
285
Adrian Hunterba2675b2019-11-15 14:42:18 +0200286 if (inject->itrace_synth_opts.set && sample->aux_sample.size)
287 event = perf_inject__cut_auxtrace_sample(inject, event, sample);
288
Adrian Hunter63c2c9f2013-07-04 16:20:20 +0300289 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300290}
291
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200292static int perf_event__repipe_mmap(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200293 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200294 struct perf_sample *sample,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200295 struct machine *machine)
Tom Zanussi454c4072010-05-01 01:41:20 -0500296{
297 int err;
298
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200299 err = perf_event__process_mmap(tool, event, sample, machine);
300 perf_event__repipe(tool, event, sample, machine);
Tom Zanussi454c4072010-05-01 01:41:20 -0500301
302 return err;
303}
304
Jiri Olsae12b2022016-03-10 17:41:13 +0100305#ifdef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +0100306static int perf_event__jit_repipe_mmap(struct perf_tool *tool,
307 union perf_event *event,
308 struct perf_sample *sample,
309 struct machine *machine)
310{
311 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
312 u64 n = 0;
Adrian Hunter570735b2016-03-07 16:44:40 -0300313 int ret;
Stephane Eranian9b07e272015-11-30 10:02:21 +0100314
315 /*
316 * if jit marker, then inject jit mmaps and generate ELF images
317 */
Adrian Hunter570735b2016-03-07 16:44:40 -0300318 ret = jit_process(inject->session, &inject->output, machine,
Yonatan Goldschmidt67dec922020-11-05 03:56:04 +0200319 event->mmap.filename, event->mmap.pid, event->mmap.tid, &n);
Adrian Hunter570735b2016-03-07 16:44:40 -0300320 if (ret < 0)
321 return ret;
322 if (ret) {
Stephane Eranian9b07e272015-11-30 10:02:21 +0100323 inject->bytes_written += n;
324 return 0;
325 }
326 return perf_event__repipe_mmap(tool, event, sample, machine);
327}
328#endif
329
Namhyung Kim27c9c342020-10-12 16:02:13 +0900330static struct dso *findnew_dso(int pid, int tid, const char *filename,
331 struct dso_id *id, struct machine *machine)
332{
333 struct thread *thread;
334 struct nsinfo *nsi = NULL;
335 struct nsinfo *nnsi;
336 struct dso *dso;
337 bool vdso;
338
339 thread = machine__findnew_thread(machine, pid, tid);
340 if (thread == NULL) {
341 pr_err("cannot find or create a task %d/%d.\n", tid, pid);
342 return NULL;
343 }
344
345 vdso = is_vdso_map(filename);
346 nsi = nsinfo__get(thread->nsinfo);
347
348 if (vdso) {
349 /* The vdso maps are always on the host and not the
350 * container. Ensure that we don't use setns to look
351 * them up.
352 */
353 nnsi = nsinfo__copy(nsi);
354 if (nnsi) {
355 nsinfo__put(nsi);
356 nnsi->need_setns = false;
357 nsi = nnsi;
358 }
359 dso = machine__findnew_vdso(machine, thread);
360 } else {
361 dso = machine__findnew_dso_id(machine, filename, id);
362 }
363
364 if (dso)
365 dso->nsinfo = nsi;
366 else
367 nsinfo__put(nsi);
368
369 thread__put(thread);
370 return dso;
371}
372
373static int perf_event__repipe_buildid_mmap(struct perf_tool *tool,
374 union perf_event *event,
375 struct perf_sample *sample,
376 struct machine *machine)
377{
378 struct dso *dso;
379
380 dso = findnew_dso(event->mmap.pid, event->mmap.tid,
381 event->mmap.filename, NULL, machine);
382
383 if (dso && !dso->hit) {
384 dso->hit = 1;
385 dso__inject_build_id(dso, tool, machine, sample->cpumode, 0);
386 dso__put(dso);
387 }
388
389 return perf_event__repipe(tool, event, sample, machine);
390}
391
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200392static int perf_event__repipe_mmap2(struct perf_tool *tool,
393 union perf_event *event,
394 struct perf_sample *sample,
395 struct machine *machine)
396{
397 int err;
398
399 err = perf_event__process_mmap2(tool, event, sample, machine);
400 perf_event__repipe(tool, event, sample, machine);
401
402 return err;
403}
404
Jiri Olsae12b2022016-03-10 17:41:13 +0100405#ifdef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +0100406static int perf_event__jit_repipe_mmap2(struct perf_tool *tool,
407 union perf_event *event,
408 struct perf_sample *sample,
409 struct machine *machine)
410{
411 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
412 u64 n = 0;
Adrian Hunter570735b2016-03-07 16:44:40 -0300413 int ret;
Stephane Eranian9b07e272015-11-30 10:02:21 +0100414
415 /*
416 * if jit marker, then inject jit mmaps and generate ELF images
417 */
Adrian Hunter570735b2016-03-07 16:44:40 -0300418 ret = jit_process(inject->session, &inject->output, machine,
Yonatan Goldschmidt67dec922020-11-05 03:56:04 +0200419 event->mmap2.filename, event->mmap2.pid, event->mmap2.tid, &n);
Adrian Hunter570735b2016-03-07 16:44:40 -0300420 if (ret < 0)
421 return ret;
422 if (ret) {
Stephane Eranian9b07e272015-11-30 10:02:21 +0100423 inject->bytes_written += n;
424 return 0;
425 }
426 return perf_event__repipe_mmap2(tool, event, sample, machine);
427}
428#endif
429
Namhyung Kim27c9c342020-10-12 16:02:13 +0900430static int perf_event__repipe_buildid_mmap2(struct perf_tool *tool,
431 union perf_event *event,
432 struct perf_sample *sample,
433 struct machine *machine)
434{
435 struct dso_id dso_id = {
436 .maj = event->mmap2.maj,
437 .min = event->mmap2.min,
438 .ino = event->mmap2.ino,
439 .ino_generation = event->mmap2.ino_generation,
440 };
441 struct dso *dso;
442
443 dso = findnew_dso(event->mmap2.pid, event->mmap2.tid,
444 event->mmap2.filename, &dso_id, machine);
445
446 if (dso && !dso->hit) {
447 dso->hit = 1;
448 dso__inject_build_id(dso, tool, machine, sample->cpumode,
449 event->mmap2.flags);
450 dso__put(dso);
451 }
452
453 perf_event__repipe(tool, event, sample, machine);
454
455 return 0;
456}
457
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300458static int perf_event__repipe_fork(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200459 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200460 struct perf_sample *sample,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200461 struct machine *machine)
Tom Zanussi454c4072010-05-01 01:41:20 -0500462{
463 int err;
464
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300465 err = perf_event__process_fork(tool, event, sample, machine);
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200466 perf_event__repipe(tool, event, sample, machine);
Tom Zanussi454c4072010-05-01 01:41:20 -0500467
468 return err;
469}
470
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300471static int perf_event__repipe_comm(struct perf_tool *tool,
472 union perf_event *event,
473 struct perf_sample *sample,
474 struct machine *machine)
475{
476 int err;
477
478 err = perf_event__process_comm(tool, event, sample, machine);
479 perf_event__repipe(tool, event, sample, machine);
480
481 return err;
482}
483
Hari Bathinif3b36142017-03-08 02:11:43 +0530484static int perf_event__repipe_namespaces(struct perf_tool *tool,
485 union perf_event *event,
486 struct perf_sample *sample,
487 struct machine *machine)
488{
489 int err = perf_event__process_namespaces(tool, event, sample, machine);
490
491 perf_event__repipe(tool, event, sample, machine);
492
493 return err;
494}
495
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300496static int perf_event__repipe_exit(struct perf_tool *tool,
497 union perf_event *event,
498 struct perf_sample *sample,
499 struct machine *machine)
500{
501 int err;
502
503 err = perf_event__process_exit(tool, event, sample, machine);
504 perf_event__repipe(tool, event, sample, machine);
505
506 return err;
507}
508
Jiri Olsa89f16882018-09-13 14:54:03 +0200509static int perf_event__repipe_tracing_data(struct perf_session *session,
510 union perf_event *event)
Tom Zanussi454c4072010-05-01 01:41:20 -0500511{
512 int err;
513
Jiri Olsa89f16882018-09-13 14:54:03 +0200514 perf_event__repipe_synth(session->tool, event);
515 err = perf_event__process_tracing_data(session, event);
Tom Zanussi454c4072010-05-01 01:41:20 -0500516
517 return err;
518}
519
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300520static int dso__read_build_id(struct dso *dso)
Tom Zanussi454c4072010-05-01 01:41:20 -0500521{
Namhyung Kim336c95b2020-10-12 16:02:11 +0900522 struct nscookie nsc;
523
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300524 if (dso->has_build_id)
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300525 return 0;
Tom Zanussi454c4072010-05-01 01:41:20 -0500526
Namhyung Kim336c95b2020-10-12 16:02:11 +0900527 nsinfo__mountns_enter(dso->nsinfo, &nsc);
Jiri Olsaf7668192020-10-13 21:24:34 +0200528 if (filename__read_build_id(dso->long_name, &dso->bid) > 0)
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300529 dso->has_build_id = true;
Namhyung Kim336c95b2020-10-12 16:02:11 +0900530 nsinfo__mountns_exit(&nsc);
Tom Zanussi454c4072010-05-01 01:41:20 -0500531
Namhyung Kim336c95b2020-10-12 16:02:11 +0900532 return dso->has_build_id ? 0 : -1;
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300533}
Tom Zanussi454c4072010-05-01 01:41:20 -0500534
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300535static int dso__inject_build_id(struct dso *dso, struct perf_tool *tool,
Namhyung Kime7b60c52020-10-12 16:02:12 +0900536 struct machine *machine, u8 cpumode, u32 flags)
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300537{
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300538 int err;
Tom Zanussi454c4072010-05-01 01:41:20 -0500539
Namhyung Kime7b60c52020-10-12 16:02:12 +0900540 if (is_anon_memory(dso->long_name) || flags & MAP_HUGETLB)
541 return 0;
542 if (is_no_dso_memory(dso->long_name))
543 return 0;
544
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300545 if (dso__read_build_id(dso) < 0) {
546 pr_debug("no build_id found for %s\n", dso->long_name);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300547 return -1;
548 }
Tom Zanussi454c4072010-05-01 01:41:20 -0500549
Namhyung Kime7b60c52020-10-12 16:02:12 +0900550 err = perf_event__synthesize_build_id(tool, dso, cpumode,
551 perf_event__repipe, machine);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300552 if (err) {
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300553 pr_err("Can't synthesize build_id event for %s\n", dso->long_name);
Tom Zanussi454c4072010-05-01 01:41:20 -0500554 return -1;
555 }
556
557 return 0;
558}
559
Namhyung Kim0bf02a02020-10-12 16:02:09 +0900560int perf_event__inject_buildid(struct perf_tool *tool, union perf_event *event,
561 struct perf_sample *sample,
562 struct evsel *evsel __maybe_unused,
563 struct machine *machine)
Tom Zanussi454c4072010-05-01 01:41:20 -0500564{
565 struct addr_location al;
566 struct thread *thread;
Tom Zanussi454c4072010-05-01 01:41:20 -0500567
Namhyung Kim13ce34d2014-05-12 09:56:42 +0900568 thread = machine__findnew_thread(machine, sample->pid, sample->tid);
Tom Zanussi454c4072010-05-01 01:41:20 -0500569 if (thread == NULL) {
570 pr_err("problem processing %d event, skipping it.\n",
571 event->header.type);
Tom Zanussi454c4072010-05-01 01:41:20 -0500572 goto repipe;
573 }
574
Arnaldo Carvalho de Melo71a84b52018-04-24 11:58:56 -0300575 if (thread__find_map(thread, sample->cpumode, sample->ip, &al)) {
Tom Zanussi454c4072010-05-01 01:41:20 -0500576 if (!al.map->dso->hit) {
577 al.map->dso->hit = 1;
Namhyung Kime7b60c52020-10-12 16:02:12 +0900578 dso__inject_build_id(al.map->dso, tool, machine,
579 sample->cpumode, al.map->flags);
Tom Zanussi454c4072010-05-01 01:41:20 -0500580 }
581 }
582
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300583 thread__put(thread);
Tom Zanussi454c4072010-05-01 01:41:20 -0500584repipe:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200585 perf_event__repipe(tool, event, sample, machine);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300586 return 0;
Tom Zanussi454c4072010-05-01 01:41:20 -0500587}
588
Andrew Vagin26a031e2012-08-07 16:56:04 +0400589static int perf_inject__sched_process_exit(struct perf_tool *tool,
590 union perf_event *event __maybe_unused,
591 struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200592 struct evsel *evsel __maybe_unused,
Andrew Vagin26a031e2012-08-07 16:56:04 +0400593 struct machine *machine __maybe_unused)
594{
595 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
596 struct event_entry *ent;
597
598 list_for_each_entry(ent, &inject->samples, node) {
599 if (sample->tid == ent->tid) {
600 list_del_init(&ent->node);
601 free(ent);
602 break;
603 }
604 }
605
606 return 0;
607}
608
609static int perf_inject__sched_switch(struct perf_tool *tool,
610 union perf_event *event,
611 struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200612 struct evsel *evsel,
Andrew Vagin26a031e2012-08-07 16:56:04 +0400613 struct machine *machine)
614{
615 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
616 struct event_entry *ent;
617
618 perf_inject__sched_process_exit(tool, event, sample, evsel, machine);
619
620 ent = malloc(event->header.size + sizeof(struct event_entry));
621 if (ent == NULL) {
622 color_fprintf(stderr, PERF_COLOR_RED,
623 "Not enough memory to process sched switch event!");
624 return -1;
625 }
626
627 ent->tid = sample->tid;
628 memcpy(&ent->event, event, event->header.size);
629 list_add(&ent->node, &inject->samples);
630 return 0;
631}
632
633static int perf_inject__sched_stat(struct perf_tool *tool,
634 union perf_event *event __maybe_unused,
635 struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200636 struct evsel *evsel,
Andrew Vagin26a031e2012-08-07 16:56:04 +0400637 struct machine *machine)
638{
639 struct event_entry *ent;
640 union perf_event *event_sw;
641 struct perf_sample sample_sw;
642 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
Arnaldo Carvalho de Meloefc0cdc2020-04-29 16:26:57 -0300643 u32 pid = evsel__intval(evsel, sample, "pid");
Andrew Vagin26a031e2012-08-07 16:56:04 +0400644
645 list_for_each_entry(ent, &inject->samples, node) {
646 if (pid == ent->tid)
647 goto found;
648 }
649
650 return 0;
651found:
652 event_sw = &ent->event[0];
Arnaldo Carvalho de Melo6b6017a2020-04-30 11:03:49 -0300653 evsel__parse_sample(evsel, event_sw, &sample_sw);
Andrew Vagin26a031e2012-08-07 16:56:04 +0400654
655 sample_sw.period = sample->period;
656 sample_sw.time = sample->time;
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200657 perf_event__synthesize_sample(event_sw, evsel->core.attr.sample_type,
658 evsel->core.attr.read_format, &sample_sw);
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400659 build_id__mark_dso_hit(tool, event_sw, &sample_sw, evsel, machine);
Andrew Vagin26a031e2012-08-07 16:56:04 +0400660 return perf_event__repipe(tool, event_sw, &sample_sw, machine);
661}
662
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300663static void sig_handler(int sig __maybe_unused)
Tom Zanussi454c4072010-05-01 01:41:20 -0500664{
665 session_done = 1;
666}
667
Arnaldo Carvalho de Melob14b36d2020-05-04 13:57:44 -0300668static int evsel__check_stype(struct evsel *evsel, u64 sample_type, const char *sample_msg)
Andrew Vagin26a031e2012-08-07 16:56:04 +0400669{
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200670 struct perf_event_attr *attr = &evsel->core.attr;
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -0300671 const char *name = evsel__name(evsel);
Andrew Vagin26a031e2012-08-07 16:56:04 +0400672
673 if (!(attr->sample_type & sample_type)) {
674 pr_err("Samples for %s event do not have %s attribute set.",
675 name, sample_msg);
676 return -EINVAL;
677 }
678
679 return 0;
680}
681
Adrian Hunterf56fb982015-09-25 16:15:55 +0300682static int drop_sample(struct perf_tool *tool __maybe_unused,
683 union perf_event *event __maybe_unused,
684 struct perf_sample *sample __maybe_unused,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200685 struct evsel *evsel __maybe_unused,
Adrian Hunterf56fb982015-09-25 16:15:55 +0300686 struct machine *machine __maybe_unused)
687{
688 return 0;
689}
690
691static void strip_init(struct perf_inject *inject)
692{
Jiri Olsa63503db2019-07-21 13:23:52 +0200693 struct evlist *evlist = inject->session->evlist;
Jiri Olsa32dcd022019-07-21 13:23:51 +0200694 struct evsel *evsel;
Adrian Hunterf56fb982015-09-25 16:15:55 +0300695
696 inject->tool.context_switch = perf_event__drop;
697
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300698 evlist__for_each_entry(evlist, evsel)
Adrian Hunterf56fb982015-09-25 16:15:55 +0300699 evsel->handler = drop_sample;
700}
701
Adrian Hunter83d7f5f2021-04-30 10:03:02 +0300702static int parse_vm_time_correlation(const struct option *opt, const char *str, int unset)
703{
704 struct perf_inject *inject = opt->value;
705 const char *args;
706 char *dry_run;
707
708 if (unset)
709 return 0;
710
711 inject->itrace_synth_opts.set = true;
712 inject->itrace_synth_opts.vm_time_correlation = true;
713 inject->in_place_update = true;
714
715 if (!str)
716 return 0;
717
718 dry_run = skip_spaces(str);
719 if (!strncmp(dry_run, "dry-run", strlen("dry-run"))) {
720 inject->itrace_synth_opts.vm_tm_corr_dry_run = true;
721 inject->in_place_update_dry_run = true;
722 args = dry_run + strlen("dry-run");
723 } else {
724 args = str;
725 }
726
727 inject->itrace_synth_opts.vm_tm_corr_args = strdup(args);
728
729 return inject->itrace_synth_opts.vm_tm_corr_args ? 0 : -ENOMEM;
730}
731
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300732static int __cmd_inject(struct perf_inject *inject)
Tom Zanussi454c4072010-05-01 01:41:20 -0500733{
Tom Zanussi454c4072010-05-01 01:41:20 -0500734 int ret = -EINVAL;
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900735 struct perf_session *session = inject->session;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100736 struct perf_data *data_out = &inject->output;
Adrian Hunter2a525f62021-04-30 10:03:01 +0300737 int fd = inject->in_place_update ? -1 : perf_data__fd(data_out);
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300738 u64 output_data_offset;
Tom Zanussi454c4072010-05-01 01:41:20 -0500739
740 signal(SIGINT, sig_handler);
741
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300742 if (inject->build_ids || inject->sched_stat ||
Namhyung Kim27c9c342020-10-12 16:02:13 +0900743 inject->itrace_synth_opts.set || inject->build_id_all) {
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300744 inject->tool.mmap = perf_event__repipe_mmap;
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200745 inject->tool.mmap2 = perf_event__repipe_mmap2;
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300746 inject->tool.fork = perf_event__repipe_fork;
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300747 inject->tool.tracing_data = perf_event__repipe_tracing_data;
Tom Zanussi454c4072010-05-01 01:41:20 -0500748 }
749
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300750 output_data_offset = session->header.data_offset;
751
Namhyung Kim27c9c342020-10-12 16:02:13 +0900752 if (inject->build_id_all) {
753 inject->tool.mmap = perf_event__repipe_buildid_mmap;
754 inject->tool.mmap2 = perf_event__repipe_buildid_mmap2;
755 } else if (inject->build_ids) {
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400756 inject->tool.sample = perf_event__inject_buildid;
757 } else if (inject->sched_stat) {
Jiri Olsa32dcd022019-07-21 13:23:51 +0200758 struct evsel *evsel;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400759
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300760 evlist__for_each_entry(session->evlist, evsel) {
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -0300761 const char *name = evsel__name(evsel);
Andrew Vagin26a031e2012-08-07 16:56:04 +0400762
763 if (!strcmp(name, "sched:sched_switch")) {
Arnaldo Carvalho de Melob14b36d2020-05-04 13:57:44 -0300764 if (evsel__check_stype(evsel, PERF_SAMPLE_TID, "TID"))
Andrew Vagin26a031e2012-08-07 16:56:04 +0400765 return -EINVAL;
766
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300767 evsel->handler = perf_inject__sched_switch;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400768 } else if (!strcmp(name, "sched:sched_process_exit"))
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300769 evsel->handler = perf_inject__sched_process_exit;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400770 else if (!strncmp(name, "sched:sched_stat_", 17))
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300771 evsel->handler = perf_inject__sched_stat;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400772 }
Adrian Hunter83d7f5f2021-04-30 10:03:02 +0300773 } else if (inject->itrace_synth_opts.vm_time_correlation) {
774 session->itrace_synth_opts = &inject->itrace_synth_opts;
775 memset(&inject->tool, 0, sizeof(inject->tool));
776 inject->tool.id_index = perf_event__process_id_index;
777 inject->tool.auxtrace_info = perf_event__process_auxtrace_info;
778 inject->tool.auxtrace = perf_event__process_auxtrace;
779 inject->tool.auxtrace_error = perf_event__process_auxtrace_error;
780 inject->tool.ordered_events = true;
781 inject->tool.ordering_requires_timestamps = true;
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300782 } else if (inject->itrace_synth_opts.set) {
783 session->itrace_synth_opts = &inject->itrace_synth_opts;
784 inject->itrace_synth_opts.inject = true;
785 inject->tool.comm = perf_event__repipe_comm;
Hari Bathinif3b36142017-03-08 02:11:43 +0530786 inject->tool.namespaces = perf_event__repipe_namespaces;
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300787 inject->tool.exit = perf_event__repipe_exit;
Adrian Hunter29f6eec2019-12-04 14:08:00 +0200788 inject->tool.id_index = perf_event__process_id_index;
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300789 inject->tool.auxtrace_info = perf_event__process_auxtrace_info;
790 inject->tool.auxtrace = perf_event__process_auxtrace;
Adrian Hunter73117302015-09-25 16:15:54 +0300791 inject->tool.aux = perf_event__drop_aux;
792 inject->tool.itrace_start = perf_event__drop_aux,
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300793 inject->tool.ordered_events = true;
794 inject->tool.ordering_requires_timestamps = true;
795 /* Allow space in the header for new attributes */
796 output_data_offset = 4096;
Adrian Hunterf56fb982015-09-25 16:15:55 +0300797 if (inject->strip)
798 strip_init(inject);
Andrew Vagin26a031e2012-08-07 16:56:04 +0400799 }
800
Adrian Hunter99fa2982015-04-30 17:37:25 +0300801 if (!inject->itrace_synth_opts.set)
802 auxtrace_index__free(&session->auxtrace_index);
803
Adrian Hunter2a525f62021-04-30 10:03:01 +0300804 if (!data_out->is_pipe && !inject->in_place_update)
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300805 lseek(fd, output_data_offset, SEEK_SET);
Andrew Vagine558a5b2012-08-07 16:56:02 +0400806
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -0300807 ret = perf_session__process_events(session);
David Carrillo-Cisnerosbb8d5212017-04-10 13:14:26 -0700808 if (ret)
809 return ret;
Tom Zanussi454c4072010-05-01 01:41:20 -0500810
Adrian Hunter2a525f62021-04-30 10:03:01 +0300811 if (!data_out->is_pipe && !inject->in_place_update) {
Adrian Hunter640dad42016-03-07 16:44:38 -0300812 if (inject->build_ids)
Adrian Huntere38b43c2014-07-14 13:02:34 +0300813 perf_header__set_feat(&session->header,
814 HEADER_BUILD_ID);
Adrian Hunter640dad42016-03-07 16:44:38 -0300815 /*
816 * Keep all buildids when there is unprocessed AUX data because
817 * it is not known which ones the AUX trace hits.
818 */
819 if (perf_header__has_feat(&session->header, HEADER_BUILD_ID) &&
820 inject->have_auxtrace && !inject->itrace_synth_opts.set)
821 dsos__hit_all(session);
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300822 /*
823 * The AUX areas have been removed and replaced with
Al Grant1c756cd2020-11-13 20:38:26 +0000824 * synthesized hardware events, so clear the feature flag.
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300825 */
Adrian Hunter051a01b2015-09-25 16:15:43 +0300826 if (inject->itrace_synth_opts.set) {
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300827 perf_header__clear_feat(&session->header,
828 HEADER_AUXTRACE);
Adrian Hunterec90e422020-04-29 18:07:46 +0300829 if (inject->itrace_synth_opts.last_branch ||
830 inject->itrace_synth_opts.add_last_branch)
Adrian Hunter051a01b2015-09-25 16:15:43 +0300831 perf_header__set_feat(&session->header,
832 HEADER_BRANCH_STACK);
833 }
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300834 session->header.data_offset = output_data_offset;
Andrew Vagine558a5b2012-08-07 16:56:02 +0400835 session->header.data_size = inject->bytes_written;
Namhyung Kim42aa2762015-01-29 17:06:48 +0900836 perf_session__write_header(session, session->evlist, fd, true);
Andrew Vagine558a5b2012-08-07 16:56:02 +0400837 }
838
Tom Zanussi454c4072010-05-01 01:41:20 -0500839 return ret;
840}
841
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -0300842int cmd_inject(int argc, const char **argv)
Tom Zanussi454c4072010-05-01 01:41:20 -0500843{
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300844 struct perf_inject inject = {
845 .tool = {
846 .sample = perf_event__repipe_sample,
Namhyung Kim2946ece2020-10-12 16:02:10 +0900847 .read = perf_event__repipe_sample,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300848 .mmap = perf_event__repipe,
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200849 .mmap2 = perf_event__repipe,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300850 .comm = perf_event__repipe,
Namhyung Kim2946ece2020-10-12 16:02:10 +0900851 .namespaces = perf_event__repipe,
852 .cgroup = perf_event__repipe,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300853 .fork = perf_event__repipe,
854 .exit = perf_event__repipe,
855 .lost = perf_event__repipe,
Adrian Hunterd8145b32015-11-13 11:48:32 +0200856 .lost_samples = perf_event__repipe,
Adrian Hunter4a96f7a2015-04-30 17:37:29 +0300857 .aux = perf_event__repipe,
Adrian Hunter0ad21f62015-04-30 17:37:30 +0300858 .itrace_start = perf_event__repipe,
Adrian Hunter02860392015-07-21 12:44:03 +0300859 .context_switch = perf_event__repipe,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300860 .throttle = perf_event__repipe,
861 .unthrottle = perf_event__repipe,
Namhyung Kim2946ece2020-10-12 16:02:10 +0900862 .ksymbol = perf_event__repipe,
863 .bpf = perf_event__repipe,
864 .text_poke = perf_event__repipe,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300865 .attr = perf_event__repipe_attr,
Namhyung Kim2946ece2020-10-12 16:02:10 +0900866 .event_update = perf_event__repipe_event_update,
Adrian Hunter47c3d102013-07-04 16:20:21 +0300867 .tracing_data = perf_event__repipe_op2_synth,
Arnaldo Carvalho de Melod704ebd2015-03-03 12:37:54 -0300868 .finished_round = perf_event__repipe_oe_synth,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300869 .build_id = perf_event__repipe_op2_synth,
Adrian Hunter3c659ee2014-10-27 15:49:22 +0200870 .id_index = perf_event__repipe_op2_synth,
Namhyung Kim2946ece2020-10-12 16:02:10 +0900871 .auxtrace_info = perf_event__repipe_op2_synth,
872 .auxtrace_error = perf_event__repipe_op2_synth,
873 .time_conv = perf_event__repipe_op2_synth,
874 .thread_map = perf_event__repipe_op2_synth,
875 .cpu_map = perf_event__repipe_op2_synth,
876 .stat_config = perf_event__repipe_op2_synth,
877 .stat = perf_event__repipe_op2_synth,
878 .stat_round = perf_event__repipe_op2_synth,
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -0700879 .feature = perf_event__repipe_op2_synth,
Namhyung Kim2946ece2020-10-12 16:02:10 +0900880 .compressed = perf_event__repipe_op4_synth,
881 .auxtrace = perf_event__repipe_auxtrace,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300882 },
Andrew Vagine558a5b2012-08-07 16:56:02 +0400883 .input_name = "-",
Andrew Vagin26a031e2012-08-07 16:56:04 +0400884 .samples = LIST_HEAD_INIT(inject.samples),
Jiri Olsa34069122013-10-29 19:04:57 +0100885 .output = {
Jiri Olsa2d4f2792019-02-21 10:41:30 +0100886 .path = "-",
887 .mode = PERF_DATA_MODE_WRITE,
Namhyung Kim60136662020-10-30 14:47:42 +0900888 .use_stdio = true,
Jiri Olsa34069122013-10-29 19:04:57 +0100889 },
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300890 };
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100891 struct perf_data data = {
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900892 .mode = PERF_DATA_MODE_READ,
Namhyung Kim60136662020-10-30 14:47:42 +0900893 .use_stdio = true,
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900894 };
895 int ret;
896
Stephane Eranian9b07e272015-11-30 10:02:21 +0100897 struct option options[] = {
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300898 OPT_BOOLEAN('b', "build-ids", &inject.build_ids,
899 "Inject build-ids into the output stream"),
Namhyung Kim27c9c342020-10-12 16:02:13 +0900900 OPT_BOOLEAN(0, "buildid-all", &inject.build_id_all,
901 "Inject build-ids of all DSOs into the output stream"),
Andrew Vagine558a5b2012-08-07 16:56:02 +0400902 OPT_STRING('i', "input", &inject.input_name, "file",
903 "input file name"),
Jiri Olsa2d4f2792019-02-21 10:41:30 +0100904 OPT_STRING('o', "output", &inject.output.path, "file",
Andrew Vagine558a5b2012-08-07 16:56:02 +0400905 "output file name"),
Andrew Vagin26a031e2012-08-07 16:56:04 +0400906 OPT_BOOLEAN('s', "sched-stat", &inject.sched_stat,
907 "Merge sched-stat and sched-switch for getting events "
908 "where and how long tasks slept"),
Jiri Olsae12b2022016-03-10 17:41:13 +0100909#ifdef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +0100910 OPT_BOOLEAN('j', "jit", &inject.jit_mode, "merge jitdump files into perf.data file"),
Jiri Olsae12b2022016-03-10 17:41:13 +0100911#endif
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300912 OPT_INCR('v', "verbose", &verbose,
913 "be more verbose (show build ids, etc)"),
Adrian Huntera7a2b8b2014-07-22 16:17:38 +0300914 OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name, "file",
915 "kallsyms pathname"),
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100916 OPT_BOOLEAN('f', "force", &data.force, "don't complain, do it"),
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300917 OPT_CALLBACK_OPTARG(0, "itrace", &inject.itrace_synth_opts,
Andi Kleenc12e0392018-09-13 20:10:31 -0700918 NULL, "opts", "Instruction Tracing options\n"
919 ITRACE_HELP,
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300920 itrace_parse_synth_opts),
Adrian Hunterf56fb982015-09-25 16:15:55 +0300921 OPT_BOOLEAN(0, "strip", &inject.strip,
922 "strip non-synthesized events (use with --itrace)"),
Adrian Hunter83d7f5f2021-04-30 10:03:02 +0300923 OPT_CALLBACK_OPTARG(0, "vm-time-correlation", &inject, NULL, "opts",
924 "correlate time between VM guests and the host",
925 parse_vm_time_correlation),
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300926 OPT_END()
927 };
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300928 const char * const inject_usage[] = {
929 "perf inject [<options>]",
930 NULL
931 };
Jiri Olsae12b2022016-03-10 17:41:13 +0100932#ifndef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +0100933 set_option_nobuild(options, 'j', "jit", "NO_LIBELF=1", true);
934#endif
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300935 argc = parse_options(argc, argv, options, inject_usage, 0);
Tom Zanussi454c4072010-05-01 01:41:20 -0500936
937 /*
938 * Any (unrecognized) arguments left?
939 */
940 if (argc)
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300941 usage_with_options(inject_usage, options);
Tom Zanussi454c4072010-05-01 01:41:20 -0500942
Adrian Hunterf56fb982015-09-25 16:15:55 +0300943 if (inject.strip && !inject.itrace_synth_opts.set) {
944 pr_err("--strip option requires --itrace option\n");
945 return -1;
946 }
947
Adrian Hunter2a525f62021-04-30 10:03:01 +0300948 if (inject.in_place_update) {
949 if (!strcmp(inject.input_name, "-")) {
950 pr_err("Input file name required for in-place updating\n");
951 return -1;
952 }
953 if (strcmp(inject.output.path, "-")) {
954 pr_err("Output file name must not be specified for in-place updating\n");
955 return -1;
956 }
957 if (!data.force && !inject.in_place_update_dry_run) {
958 pr_err("The input file would be updated in place, "
959 "the --force option is required.\n");
960 return -1;
961 }
962 if (!inject.in_place_update_dry_run)
963 data.in_place_update = true;
964 } else if (perf_data__open(&inject.output)) {
Jiri Olsa34069122013-10-29 19:04:57 +0100965 perror("failed to create output file");
966 return -1;
Andrew Vagine558a5b2012-08-07 16:56:02 +0400967 }
968
Jiri Olsa2d4f2792019-02-21 10:41:30 +0100969 data.path = inject.input_name;
Adrian Hunter026334a2021-04-01 13:36:05 +0300970 inject.session = perf_session__new(&data, inject.output.is_pipe, &inject.tool);
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +0530971 if (IS_ERR(inject.session))
972 return PTR_ERR(inject.session);
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900973
Alexey Budankov371a3372019-03-18 20:45:44 +0300974 if (zstd_init(&(inject.session->zstd_data), 0) < 0)
975 pr_warning("Decompression initialization failed.\n");
976
Namhyung Kim27c9c342020-10-12 16:02:13 +0900977 if (inject.build_ids && !inject.build_id_all) {
Arnaldo Carvalho de Melo921f3fa2016-01-22 18:41:00 -0300978 /*
979 * to make sure the mmap records are ordered correctly
980 * and so that the correct especially due to jitted code
981 * mmaps. We cannot generate the buildid hit list and
982 * inject the jit mmaps at the same time for now.
983 */
984 inject.tool.ordered_events = true;
985 inject.tool.ordering_requires_timestamps = true;
986 }
Namhyung Kim27c9c342020-10-12 16:02:13 +0900987
988 if (inject.sched_stat) {
989 inject.tool.ordered_events = true;
990 }
991
Jiri Olsae12b2022016-03-10 17:41:13 +0100992#ifdef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +0100993 if (inject.jit_mode) {
Stephane Eranian9b07e272015-11-30 10:02:21 +0100994 inject.tool.mmap2 = perf_event__jit_repipe_mmap2;
995 inject.tool.mmap = perf_event__jit_repipe_mmap;
996 inject.tool.ordered_events = true;
997 inject.tool.ordering_requires_timestamps = true;
998 /*
999 * JIT MMAP injection injects all MMAP events in one go, so it
1000 * does not obey finished_round semantics.
1001 */
1002 inject.tool.finished_round = perf_event__drop_oe;
1003 }
1004#endif
Taeung Song9fedfb02015-06-30 17:15:20 +09001005 ret = symbol__init(&inject.session->header.env);
1006 if (ret < 0)
1007 goto out_delete;
Tom Zanussi454c4072010-05-01 01:41:20 -05001008
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +09001009 ret = __cmd_inject(&inject);
1010
Taeung Song9fedfb02015-06-30 17:15:20 +09001011out_delete:
Alexey Budankov371a3372019-03-18 20:45:44 +03001012 zstd_fini(&(inject.session->zstd_data));
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +09001013 perf_session__delete(inject.session);
Adrian Hunter83d7f5f2021-04-30 10:03:02 +03001014 free(inject.itrace_synth_opts.vm_tm_corr_args);
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +09001015 return ret;
Tom Zanussi454c4072010-05-01 01:41:20 -05001016}