blob: 452a75fe68e5fd3587e3cb3e99edde720fb19b33 [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>
Arnaldo Carvalho de Meloa43783a2017-04-18 10:46:11 -030034#include <errno.h>
Arnaldo Carvalho de Melo9607ad32017-04-19 15:49:18 -030035#include <signal.h>
Andrew Vagin26a031e2012-08-07 16:56:04 +040036
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -030037struct perf_inject {
Jiri Olsa34069122013-10-29 19:04:57 +010038 struct perf_tool tool;
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +090039 struct perf_session *session;
Jiri Olsa34069122013-10-29 19:04:57 +010040 bool build_ids;
Namhyung Kim27c9c342020-10-12 16:02:13 +090041 bool build_id_all;
Jiri Olsa34069122013-10-29 19:04:57 +010042 bool sched_stat;
Adrian Huntercd10b282015-04-30 17:37:26 +030043 bool have_auxtrace;
Adrian Hunterf56fb982015-09-25 16:15:55 +030044 bool strip;
Stephane Eranian9b07e272015-11-30 10:02:21 +010045 bool jit_mode;
Jiri Olsa34069122013-10-29 19:04:57 +010046 const char *input_name;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +010047 struct perf_data output;
Jiri Olsa34069122013-10-29 19:04:57 +010048 u64 bytes_written;
Adrian Hunter73117302015-09-25 16:15:54 +030049 u64 aux_id;
Jiri Olsa34069122013-10-29 19:04:57 +010050 struct list_head samples;
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +030051 struct itrace_synth_opts itrace_synth_opts;
Adrian Hunterba2675b2019-11-15 14:42:18 +020052 char event_copy[PERF_SAMPLE_MAX_SIZE];
Andrew Vagin26a031e2012-08-07 16:56:04 +040053};
54
55struct event_entry {
56 struct list_head node;
57 u32 tid;
Gustavo A. R. Silva6549a8c2020-05-15 12:29:26 -050058 union perf_event event[];
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -030059};
Tom Zanussi454c4072010-05-01 01:41:20 -050060
Namhyung Kim27c9c342020-10-12 16:02:13 +090061static int dso__inject_build_id(struct dso *dso, struct perf_tool *tool,
62 struct machine *machine, u8 cpumode, u32 flags);
63
Adrian Huntercd17a9b2015-04-21 12:21:54 +030064static int output_bytes(struct perf_inject *inject, void *buf, size_t sz)
Tom Zanussi454c4072010-05-01 01:41:20 -050065{
Jiri Olsa34069122013-10-29 19:04:57 +010066 ssize_t size;
Tom Zanussi454c4072010-05-01 01:41:20 -050067
Jiri Olsa8ceb41d2017-01-23 22:07:59 +010068 size = perf_data__write(&inject->output, buf, sz);
Jiri Olsa34069122013-10-29 19:04:57 +010069 if (size < 0)
70 return -errno;
Tom Zanussi454c4072010-05-01 01:41:20 -050071
Jiri Olsa34069122013-10-29 19:04:57 +010072 inject->bytes_written += size;
Tom Zanussi454c4072010-05-01 01:41:20 -050073 return 0;
74}
75
Adrian Huntercd17a9b2015-04-21 12:21:54 +030076static int perf_event__repipe_synth(struct perf_tool *tool,
77 union perf_event *event)
78{
79 struct perf_inject *inject = container_of(tool, struct perf_inject,
80 tool);
81
82 return output_bytes(inject, event, event->header.size);
83}
84
Arnaldo Carvalho de Melod704ebd2015-03-03 12:37:54 -030085static int perf_event__repipe_oe_synth(struct perf_tool *tool,
86 union perf_event *event,
87 struct ordered_events *oe __maybe_unused)
88{
89 return perf_event__repipe_synth(tool, event);
90}
91
Jiri Olsae12b2022016-03-10 17:41:13 +010092#ifdef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +010093static int perf_event__drop_oe(struct perf_tool *tool __maybe_unused,
94 union perf_event *event __maybe_unused,
95 struct ordered_events *oe __maybe_unused)
96{
97 return 0;
98}
99#endif
100
Jiri Olsa89f16882018-09-13 14:54:03 +0200101static int perf_event__repipe_op2_synth(struct perf_session *session,
102 union perf_event *event)
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200103{
Jiri Olsa89f16882018-09-13 14:54:03 +0200104 return perf_event__repipe_synth(session->tool, event);
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200105}
106
Namhyung Kim2946ece2020-10-12 16:02:10 +0900107static int perf_event__repipe_op4_synth(struct perf_session *session,
108 union perf_event *event,
109 u64 data __maybe_unused)
110{
111 return perf_event__repipe_synth(session->tool, event);
112}
113
Adrian Hunter47c3d102013-07-04 16:20:21 +0300114static int perf_event__repipe_attr(struct perf_tool *tool,
115 union perf_event *event,
Jiri Olsa63503db2019-07-21 13:23:52 +0200116 struct evlist **pevlist)
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -0200117{
Adrian Hunter89c97d92013-10-22 10:34:09 +0300118 struct perf_inject *inject = container_of(tool, struct perf_inject,
119 tool);
Stephane Eranian1a1ed1b2012-05-15 13:28:11 +0200120 int ret;
Adrian Hunter47c3d102013-07-04 16:20:21 +0300121
122 ret = perf_event__process_attr(tool, event, pevlist);
Stephane Eranian1a1ed1b2012-05-15 13:28:11 +0200123 if (ret)
124 return ret;
125
Jiri Olsaa261e4a2014-06-05 18:51:44 +0200126 if (!inject->output.is_pipe)
Adrian Hunter89c97d92013-10-22 10:34:09 +0300127 return 0;
128
Adrian Hunter47c3d102013-07-04 16:20:21 +0300129 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -0200130}
131
Namhyung Kim2946ece2020-10-12 16:02:10 +0900132static int perf_event__repipe_event_update(struct perf_tool *tool,
133 union perf_event *event,
134 struct evlist **pevlist __maybe_unused)
135{
136 return perf_event__repipe_synth(tool, event);
137}
138
Adrian Huntere31f0d02015-04-30 17:37:27 +0300139#ifdef HAVE_AUXTRACE_SUPPORT
140
141static int copy_bytes(struct perf_inject *inject, int fd, off_t size)
142{
143 char buf[4096];
144 ssize_t ssz;
145 int ret;
146
147 while (size > 0) {
148 ssz = read(fd, buf, min(size, (off_t)sizeof(buf)));
149 if (ssz < 0)
150 return -errno;
151 ret = output_bytes(inject, buf, ssz);
152 if (ret)
153 return ret;
154 size -= ssz;
155 }
156
157 return 0;
158}
159
Jiri Olsa73365552018-09-13 14:54:04 +0200160static s64 perf_event__repipe_auxtrace(struct perf_session *session,
161 union perf_event *event)
Adrian Huntercd17a9b2015-04-21 12:21:54 +0300162{
Jiri Olsa73365552018-09-13 14:54:04 +0200163 struct perf_tool *tool = session->tool;
Adrian Huntercd17a9b2015-04-21 12:21:54 +0300164 struct perf_inject *inject = container_of(tool, struct perf_inject,
165 tool);
166 int ret;
167
Adrian Huntercd10b282015-04-30 17:37:26 +0300168 inject->have_auxtrace = true;
169
Adrian Hunter99fa2982015-04-30 17:37:25 +0300170 if (!inject->output.is_pipe) {
171 off_t offset;
172
Jiri Olsaeae8ad82017-01-23 22:25:41 +0100173 offset = lseek(inject->output.file.fd, 0, SEEK_CUR);
Adrian Hunter99fa2982015-04-30 17:37:25 +0300174 if (offset == -1)
175 return -errno;
176 ret = auxtrace_index__auxtrace_event(&session->auxtrace_index,
177 event, offset);
178 if (ret < 0)
179 return ret;
180 }
181
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100182 if (perf_data__is_pipe(session->data) || !session->one_mmap) {
Adrian Huntercd17a9b2015-04-21 12:21:54 +0300183 ret = output_bytes(inject, event, event->header.size);
184 if (ret < 0)
185 return ret;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100186 ret = copy_bytes(inject, perf_data__fd(session->data),
Adrian Huntercd17a9b2015-04-21 12:21:54 +0300187 event->auxtrace.size);
188 } else {
189 ret = output_bytes(inject, event,
190 event->header.size + event->auxtrace.size);
191 }
192 if (ret < 0)
193 return ret;
194
195 return event->auxtrace.size;
196}
197
Adrian Huntere31f0d02015-04-30 17:37:27 +0300198#else
199
200static s64
Jiri Olsa73365552018-09-13 14:54:04 +0200201perf_event__repipe_auxtrace(struct perf_session *session __maybe_unused,
202 union perf_event *event __maybe_unused)
Adrian Huntere31f0d02015-04-30 17:37:27 +0300203{
204 pr_err("AUX area tracing not supported\n");
205 return -EINVAL;
206}
207
208#endif
209
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200210static int perf_event__repipe(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200211 union perf_event *event,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300212 struct perf_sample *sample __maybe_unused,
Adrian Hunter63c2c9f2013-07-04 16:20:20 +0300213 struct machine *machine __maybe_unused)
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -0200214{
Adrian Hunter63c2c9f2013-07-04 16:20:20 +0300215 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -0200216}
217
Adrian Hunterf56fb982015-09-25 16:15:55 +0300218static int perf_event__drop(struct perf_tool *tool __maybe_unused,
219 union perf_event *event __maybe_unused,
220 struct perf_sample *sample __maybe_unused,
221 struct machine *machine __maybe_unused)
222{
223 return 0;
224}
225
Adrian Hunter73117302015-09-25 16:15:54 +0300226static int perf_event__drop_aux(struct perf_tool *tool,
227 union perf_event *event __maybe_unused,
228 struct perf_sample *sample,
229 struct machine *machine __maybe_unused)
230{
231 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
232
233 if (!inject->aux_id)
234 inject->aux_id = sample->id;
235
236 return 0;
237}
238
Adrian Hunterba2675b2019-11-15 14:42:18 +0200239static union perf_event *
240perf_inject__cut_auxtrace_sample(struct perf_inject *inject,
241 union perf_event *event,
242 struct perf_sample *sample)
243{
244 size_t sz1 = sample->aux_sample.data - (void *)event;
245 size_t sz2 = event->header.size - sample->aux_sample.size - sz1;
246 union perf_event *ev = (union perf_event *)inject->event_copy;
247
248 if (sz1 > event->header.size || sz2 > event->header.size ||
249 sz1 + sz2 > event->header.size ||
250 sz1 < sizeof(struct perf_event_header) + sizeof(u64))
251 return event;
252
253 memcpy(ev, event, sz1);
254 memcpy((void *)ev + sz1, (void *)event + event->header.size - sz2, sz2);
255 ev->header.size = sz1 + sz2;
256 ((u64 *)((void *)ev + sz1))[-1] = 0;
257
258 return ev;
259}
260
Andrew Vagin26a031e2012-08-07 16:56:04 +0400261typedef int (*inject_handler)(struct perf_tool *tool,
262 union perf_event *event,
263 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);
266
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200267static int perf_event__repipe_sample(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200268 union perf_event *event,
Andrew Vagin26a031e2012-08-07 16:56:04 +0400269 struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200270 struct evsel *evsel,
Andrew Vagin26a031e2012-08-07 16:56:04 +0400271 struct machine *machine)
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300272{
Adrian Hunterba2675b2019-11-15 14:42:18 +0200273 struct perf_inject *inject = container_of(tool, struct perf_inject,
274 tool);
275
Arnaldo Carvalho de Melo40978e92019-07-03 16:02:09 -0300276 if (evsel && evsel->handler) {
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300277 inject_handler f = evsel->handler;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400278 return f(tool, event, sample, evsel, machine);
279 }
280
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400281 build_id__mark_dso_hit(tool, event, sample, evsel, machine);
282
Adrian Hunterba2675b2019-11-15 14:42:18 +0200283 if (inject->itrace_synth_opts.set && sample->aux_sample.size)
284 event = perf_inject__cut_auxtrace_sample(inject, event, sample);
285
Adrian Hunter63c2c9f2013-07-04 16:20:20 +0300286 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300287}
288
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200289static int perf_event__repipe_mmap(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200290 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200291 struct perf_sample *sample,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200292 struct machine *machine)
Tom Zanussi454c4072010-05-01 01:41:20 -0500293{
294 int err;
295
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200296 err = perf_event__process_mmap(tool, event, sample, machine);
297 perf_event__repipe(tool, event, sample, machine);
Tom Zanussi454c4072010-05-01 01:41:20 -0500298
299 return err;
300}
301
Jiri Olsae12b2022016-03-10 17:41:13 +0100302#ifdef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +0100303static int perf_event__jit_repipe_mmap(struct perf_tool *tool,
304 union perf_event *event,
305 struct perf_sample *sample,
306 struct machine *machine)
307{
308 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
309 u64 n = 0;
Adrian Hunter570735b2016-03-07 16:44:40 -0300310 int ret;
Stephane Eranian9b07e272015-11-30 10:02:21 +0100311
312 /*
313 * if jit marker, then inject jit mmaps and generate ELF images
314 */
Adrian Hunter570735b2016-03-07 16:44:40 -0300315 ret = jit_process(inject->session, &inject->output, machine,
Steve MacLeanc8f6ae12020-05-26 18:51:11 -0700316 event->mmap.filename, event->mmap.pid, &n);
Adrian Hunter570735b2016-03-07 16:44:40 -0300317 if (ret < 0)
318 return ret;
319 if (ret) {
Stephane Eranian9b07e272015-11-30 10:02:21 +0100320 inject->bytes_written += n;
321 return 0;
322 }
323 return perf_event__repipe_mmap(tool, event, sample, machine);
324}
325#endif
326
Namhyung Kim27c9c342020-10-12 16:02:13 +0900327static struct dso *findnew_dso(int pid, int tid, const char *filename,
328 struct dso_id *id, struct machine *machine)
329{
330 struct thread *thread;
331 struct nsinfo *nsi = NULL;
332 struct nsinfo *nnsi;
333 struct dso *dso;
334 bool vdso;
335
336 thread = machine__findnew_thread(machine, pid, tid);
337 if (thread == NULL) {
338 pr_err("cannot find or create a task %d/%d.\n", tid, pid);
339 return NULL;
340 }
341
342 vdso = is_vdso_map(filename);
343 nsi = nsinfo__get(thread->nsinfo);
344
345 if (vdso) {
346 /* The vdso maps are always on the host and not the
347 * container. Ensure that we don't use setns to look
348 * them up.
349 */
350 nnsi = nsinfo__copy(nsi);
351 if (nnsi) {
352 nsinfo__put(nsi);
353 nnsi->need_setns = false;
354 nsi = nnsi;
355 }
356 dso = machine__findnew_vdso(machine, thread);
357 } else {
358 dso = machine__findnew_dso_id(machine, filename, id);
359 }
360
361 if (dso)
362 dso->nsinfo = nsi;
363 else
364 nsinfo__put(nsi);
365
366 thread__put(thread);
367 return dso;
368}
369
370static int perf_event__repipe_buildid_mmap(struct perf_tool *tool,
371 union perf_event *event,
372 struct perf_sample *sample,
373 struct machine *machine)
374{
375 struct dso *dso;
376
377 dso = findnew_dso(event->mmap.pid, event->mmap.tid,
378 event->mmap.filename, NULL, machine);
379
380 if (dso && !dso->hit) {
381 dso->hit = 1;
382 dso__inject_build_id(dso, tool, machine, sample->cpumode, 0);
383 dso__put(dso);
384 }
385
386 return perf_event__repipe(tool, event, sample, machine);
387}
388
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200389static int perf_event__repipe_mmap2(struct perf_tool *tool,
390 union perf_event *event,
391 struct perf_sample *sample,
392 struct machine *machine)
393{
394 int err;
395
396 err = perf_event__process_mmap2(tool, event, sample, machine);
397 perf_event__repipe(tool, event, sample, machine);
398
399 return err;
400}
401
Jiri Olsae12b2022016-03-10 17:41:13 +0100402#ifdef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +0100403static int perf_event__jit_repipe_mmap2(struct perf_tool *tool,
404 union perf_event *event,
405 struct perf_sample *sample,
406 struct machine *machine)
407{
408 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
409 u64 n = 0;
Adrian Hunter570735b2016-03-07 16:44:40 -0300410 int ret;
Stephane Eranian9b07e272015-11-30 10:02:21 +0100411
412 /*
413 * if jit marker, then inject jit mmaps and generate ELF images
414 */
Adrian Hunter570735b2016-03-07 16:44:40 -0300415 ret = jit_process(inject->session, &inject->output, machine,
Steve MacLeanc8f6ae12020-05-26 18:51:11 -0700416 event->mmap2.filename, event->mmap2.pid, &n);
Adrian Hunter570735b2016-03-07 16:44:40 -0300417 if (ret < 0)
418 return ret;
419 if (ret) {
Stephane Eranian9b07e272015-11-30 10:02:21 +0100420 inject->bytes_written += n;
421 return 0;
422 }
423 return perf_event__repipe_mmap2(tool, event, sample, machine);
424}
425#endif
426
Namhyung Kim27c9c342020-10-12 16:02:13 +0900427static int perf_event__repipe_buildid_mmap2(struct perf_tool *tool,
428 union perf_event *event,
429 struct perf_sample *sample,
430 struct machine *machine)
431{
432 struct dso_id dso_id = {
433 .maj = event->mmap2.maj,
434 .min = event->mmap2.min,
435 .ino = event->mmap2.ino,
436 .ino_generation = event->mmap2.ino_generation,
437 };
438 struct dso *dso;
439
440 dso = findnew_dso(event->mmap2.pid, event->mmap2.tid,
441 event->mmap2.filename, &dso_id, machine);
442
443 if (dso && !dso->hit) {
444 dso->hit = 1;
445 dso__inject_build_id(dso, tool, machine, sample->cpumode,
446 event->mmap2.flags);
447 dso__put(dso);
448 }
449
450 perf_event__repipe(tool, event, sample, machine);
451
452 return 0;
453}
454
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300455static int perf_event__repipe_fork(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,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200458 struct machine *machine)
Tom Zanussi454c4072010-05-01 01:41:20 -0500459{
460 int err;
461
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300462 err = perf_event__process_fork(tool, event, sample, machine);
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200463 perf_event__repipe(tool, event, sample, machine);
Tom Zanussi454c4072010-05-01 01:41:20 -0500464
465 return err;
466}
467
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300468static int perf_event__repipe_comm(struct perf_tool *tool,
469 union perf_event *event,
470 struct perf_sample *sample,
471 struct machine *machine)
472{
473 int err;
474
475 err = perf_event__process_comm(tool, event, sample, machine);
476 perf_event__repipe(tool, event, sample, machine);
477
478 return err;
479}
480
Hari Bathinif3b36142017-03-08 02:11:43 +0530481static int perf_event__repipe_namespaces(struct perf_tool *tool,
482 union perf_event *event,
483 struct perf_sample *sample,
484 struct machine *machine)
485{
486 int err = perf_event__process_namespaces(tool, event, sample, machine);
487
488 perf_event__repipe(tool, event, sample, machine);
489
490 return err;
491}
492
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300493static int perf_event__repipe_exit(struct perf_tool *tool,
494 union perf_event *event,
495 struct perf_sample *sample,
496 struct machine *machine)
497{
498 int err;
499
500 err = perf_event__process_exit(tool, event, sample, machine);
501 perf_event__repipe(tool, event, sample, machine);
502
503 return err;
504}
505
Jiri Olsa89f16882018-09-13 14:54:03 +0200506static int perf_event__repipe_tracing_data(struct perf_session *session,
507 union perf_event *event)
Tom Zanussi454c4072010-05-01 01:41:20 -0500508{
509 int err;
510
Jiri Olsa89f16882018-09-13 14:54:03 +0200511 perf_event__repipe_synth(session->tool, event);
512 err = perf_event__process_tracing_data(session, event);
Tom Zanussi454c4072010-05-01 01:41:20 -0500513
514 return err;
515}
516
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300517static int dso__read_build_id(struct dso *dso)
Tom Zanussi454c4072010-05-01 01:41:20 -0500518{
Namhyung Kim336c95b2020-10-12 16:02:11 +0900519 struct nscookie nsc;
520
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300521 if (dso->has_build_id)
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300522 return 0;
Tom Zanussi454c4072010-05-01 01:41:20 -0500523
Namhyung Kim336c95b2020-10-12 16:02:11 +0900524 nsinfo__mountns_enter(dso->nsinfo, &nsc);
Jiri Olsaf7668192020-10-13 21:24:34 +0200525 if (filename__read_build_id(dso->long_name, &dso->bid) > 0)
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300526 dso->has_build_id = true;
Namhyung Kim336c95b2020-10-12 16:02:11 +0900527 nsinfo__mountns_exit(&nsc);
Tom Zanussi454c4072010-05-01 01:41:20 -0500528
Namhyung Kim336c95b2020-10-12 16:02:11 +0900529 return dso->has_build_id ? 0 : -1;
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300530}
Tom Zanussi454c4072010-05-01 01:41:20 -0500531
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300532static int dso__inject_build_id(struct dso *dso, struct perf_tool *tool,
Namhyung Kime7b60c52020-10-12 16:02:12 +0900533 struct machine *machine, u8 cpumode, u32 flags)
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300534{
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300535 int err;
Tom Zanussi454c4072010-05-01 01:41:20 -0500536
Namhyung Kime7b60c52020-10-12 16:02:12 +0900537 if (is_anon_memory(dso->long_name) || flags & MAP_HUGETLB)
538 return 0;
539 if (is_no_dso_memory(dso->long_name))
540 return 0;
541
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300542 if (dso__read_build_id(dso) < 0) {
543 pr_debug("no build_id found for %s\n", dso->long_name);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300544 return -1;
545 }
Tom Zanussi454c4072010-05-01 01:41:20 -0500546
Namhyung Kime7b60c52020-10-12 16:02:12 +0900547 err = perf_event__synthesize_build_id(tool, dso, cpumode,
548 perf_event__repipe, machine);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300549 if (err) {
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300550 pr_err("Can't synthesize build_id event for %s\n", dso->long_name);
Tom Zanussi454c4072010-05-01 01:41:20 -0500551 return -1;
552 }
553
554 return 0;
555}
556
Namhyung Kim0bf02a02020-10-12 16:02:09 +0900557int perf_event__inject_buildid(struct perf_tool *tool, union perf_event *event,
558 struct perf_sample *sample,
559 struct evsel *evsel __maybe_unused,
560 struct machine *machine)
Tom Zanussi454c4072010-05-01 01:41:20 -0500561{
562 struct addr_location al;
563 struct thread *thread;
Tom Zanussi454c4072010-05-01 01:41:20 -0500564
Namhyung Kim13ce34d2014-05-12 09:56:42 +0900565 thread = machine__findnew_thread(machine, sample->pid, sample->tid);
Tom Zanussi454c4072010-05-01 01:41:20 -0500566 if (thread == NULL) {
567 pr_err("problem processing %d event, skipping it.\n",
568 event->header.type);
Tom Zanussi454c4072010-05-01 01:41:20 -0500569 goto repipe;
570 }
571
Arnaldo Carvalho de Melo71a84b52018-04-24 11:58:56 -0300572 if (thread__find_map(thread, sample->cpumode, sample->ip, &al)) {
Tom Zanussi454c4072010-05-01 01:41:20 -0500573 if (!al.map->dso->hit) {
574 al.map->dso->hit = 1;
Namhyung Kime7b60c52020-10-12 16:02:12 +0900575 dso__inject_build_id(al.map->dso, tool, machine,
576 sample->cpumode, al.map->flags);
Tom Zanussi454c4072010-05-01 01:41:20 -0500577 }
578 }
579
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300580 thread__put(thread);
Tom Zanussi454c4072010-05-01 01:41:20 -0500581repipe:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200582 perf_event__repipe(tool, event, sample, machine);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300583 return 0;
Tom Zanussi454c4072010-05-01 01:41:20 -0500584}
585
Andrew Vagin26a031e2012-08-07 16:56:04 +0400586static int perf_inject__sched_process_exit(struct perf_tool *tool,
587 union perf_event *event __maybe_unused,
588 struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200589 struct evsel *evsel __maybe_unused,
Andrew Vagin26a031e2012-08-07 16:56:04 +0400590 struct machine *machine __maybe_unused)
591{
592 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
593 struct event_entry *ent;
594
595 list_for_each_entry(ent, &inject->samples, node) {
596 if (sample->tid == ent->tid) {
597 list_del_init(&ent->node);
598 free(ent);
599 break;
600 }
601 }
602
603 return 0;
604}
605
606static int perf_inject__sched_switch(struct perf_tool *tool,
607 union perf_event *event,
608 struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200609 struct evsel *evsel,
Andrew Vagin26a031e2012-08-07 16:56:04 +0400610 struct machine *machine)
611{
612 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
613 struct event_entry *ent;
614
615 perf_inject__sched_process_exit(tool, event, sample, evsel, machine);
616
617 ent = malloc(event->header.size + sizeof(struct event_entry));
618 if (ent == NULL) {
619 color_fprintf(stderr, PERF_COLOR_RED,
620 "Not enough memory to process sched switch event!");
621 return -1;
622 }
623
624 ent->tid = sample->tid;
625 memcpy(&ent->event, event, event->header.size);
626 list_add(&ent->node, &inject->samples);
627 return 0;
628}
629
630static int perf_inject__sched_stat(struct perf_tool *tool,
631 union perf_event *event __maybe_unused,
632 struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200633 struct evsel *evsel,
Andrew Vagin26a031e2012-08-07 16:56:04 +0400634 struct machine *machine)
635{
636 struct event_entry *ent;
637 union perf_event *event_sw;
638 struct perf_sample sample_sw;
639 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
Arnaldo Carvalho de Meloefc0cdc2020-04-29 16:26:57 -0300640 u32 pid = evsel__intval(evsel, sample, "pid");
Andrew Vagin26a031e2012-08-07 16:56:04 +0400641
642 list_for_each_entry(ent, &inject->samples, node) {
643 if (pid == ent->tid)
644 goto found;
645 }
646
647 return 0;
648found:
649 event_sw = &ent->event[0];
Arnaldo Carvalho de Melo6b6017a2020-04-30 11:03:49 -0300650 evsel__parse_sample(evsel, event_sw, &sample_sw);
Andrew Vagin26a031e2012-08-07 16:56:04 +0400651
652 sample_sw.period = sample->period;
653 sample_sw.time = sample->time;
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200654 perf_event__synthesize_sample(event_sw, evsel->core.attr.sample_type,
655 evsel->core.attr.read_format, &sample_sw);
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400656 build_id__mark_dso_hit(tool, event_sw, &sample_sw, evsel, machine);
Andrew Vagin26a031e2012-08-07 16:56:04 +0400657 return perf_event__repipe(tool, event_sw, &sample_sw, machine);
658}
659
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300660static void sig_handler(int sig __maybe_unused)
Tom Zanussi454c4072010-05-01 01:41:20 -0500661{
662 session_done = 1;
663}
664
Arnaldo Carvalho de Melob14b36d2020-05-04 13:57:44 -0300665static int evsel__check_stype(struct evsel *evsel, u64 sample_type, const char *sample_msg)
Andrew Vagin26a031e2012-08-07 16:56:04 +0400666{
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200667 struct perf_event_attr *attr = &evsel->core.attr;
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -0300668 const char *name = evsel__name(evsel);
Andrew Vagin26a031e2012-08-07 16:56:04 +0400669
670 if (!(attr->sample_type & sample_type)) {
671 pr_err("Samples for %s event do not have %s attribute set.",
672 name, sample_msg);
673 return -EINVAL;
674 }
675
676 return 0;
677}
678
Adrian Hunterf56fb982015-09-25 16:15:55 +0300679static int drop_sample(struct perf_tool *tool __maybe_unused,
680 union perf_event *event __maybe_unused,
681 struct perf_sample *sample __maybe_unused,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200682 struct evsel *evsel __maybe_unused,
Adrian Hunterf56fb982015-09-25 16:15:55 +0300683 struct machine *machine __maybe_unused)
684{
685 return 0;
686}
687
688static void strip_init(struct perf_inject *inject)
689{
Jiri Olsa63503db2019-07-21 13:23:52 +0200690 struct evlist *evlist = inject->session->evlist;
Jiri Olsa32dcd022019-07-21 13:23:51 +0200691 struct evsel *evsel;
Adrian Hunterf56fb982015-09-25 16:15:55 +0300692
693 inject->tool.context_switch = perf_event__drop;
694
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300695 evlist__for_each_entry(evlist, evsel)
Adrian Hunterf56fb982015-09-25 16:15:55 +0300696 evsel->handler = drop_sample;
697}
698
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300699static int __cmd_inject(struct perf_inject *inject)
Tom Zanussi454c4072010-05-01 01:41:20 -0500700{
Tom Zanussi454c4072010-05-01 01:41:20 -0500701 int ret = -EINVAL;
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900702 struct perf_session *session = inject->session;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100703 struct perf_data *data_out = &inject->output;
704 int fd = perf_data__fd(data_out);
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300705 u64 output_data_offset;
Tom Zanussi454c4072010-05-01 01:41:20 -0500706
707 signal(SIGINT, sig_handler);
708
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300709 if (inject->build_ids || inject->sched_stat ||
Namhyung Kim27c9c342020-10-12 16:02:13 +0900710 inject->itrace_synth_opts.set || inject->build_id_all) {
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300711 inject->tool.mmap = perf_event__repipe_mmap;
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200712 inject->tool.mmap2 = perf_event__repipe_mmap2;
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300713 inject->tool.fork = perf_event__repipe_fork;
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300714 inject->tool.tracing_data = perf_event__repipe_tracing_data;
Tom Zanussi454c4072010-05-01 01:41:20 -0500715 }
716
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300717 output_data_offset = session->header.data_offset;
718
Namhyung Kim27c9c342020-10-12 16:02:13 +0900719 if (inject->build_id_all) {
720 inject->tool.mmap = perf_event__repipe_buildid_mmap;
721 inject->tool.mmap2 = perf_event__repipe_buildid_mmap2;
722 } else if (inject->build_ids) {
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400723 inject->tool.sample = perf_event__inject_buildid;
724 } else if (inject->sched_stat) {
Jiri Olsa32dcd022019-07-21 13:23:51 +0200725 struct evsel *evsel;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400726
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300727 evlist__for_each_entry(session->evlist, evsel) {
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -0300728 const char *name = evsel__name(evsel);
Andrew Vagin26a031e2012-08-07 16:56:04 +0400729
730 if (!strcmp(name, "sched:sched_switch")) {
Arnaldo Carvalho de Melob14b36d2020-05-04 13:57:44 -0300731 if (evsel__check_stype(evsel, PERF_SAMPLE_TID, "TID"))
Andrew Vagin26a031e2012-08-07 16:56:04 +0400732 return -EINVAL;
733
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300734 evsel->handler = perf_inject__sched_switch;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400735 } else if (!strcmp(name, "sched:sched_process_exit"))
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300736 evsel->handler = perf_inject__sched_process_exit;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400737 else if (!strncmp(name, "sched:sched_stat_", 17))
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300738 evsel->handler = perf_inject__sched_stat;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400739 }
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300740 } else if (inject->itrace_synth_opts.set) {
741 session->itrace_synth_opts = &inject->itrace_synth_opts;
742 inject->itrace_synth_opts.inject = true;
743 inject->tool.comm = perf_event__repipe_comm;
Hari Bathinif3b36142017-03-08 02:11:43 +0530744 inject->tool.namespaces = perf_event__repipe_namespaces;
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300745 inject->tool.exit = perf_event__repipe_exit;
Adrian Hunter29f6eec2019-12-04 14:08:00 +0200746 inject->tool.id_index = perf_event__process_id_index;
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300747 inject->tool.auxtrace_info = perf_event__process_auxtrace_info;
748 inject->tool.auxtrace = perf_event__process_auxtrace;
Adrian Hunter73117302015-09-25 16:15:54 +0300749 inject->tool.aux = perf_event__drop_aux;
750 inject->tool.itrace_start = perf_event__drop_aux,
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300751 inject->tool.ordered_events = true;
752 inject->tool.ordering_requires_timestamps = true;
753 /* Allow space in the header for new attributes */
754 output_data_offset = 4096;
Adrian Hunterf56fb982015-09-25 16:15:55 +0300755 if (inject->strip)
756 strip_init(inject);
Andrew Vagin26a031e2012-08-07 16:56:04 +0400757 }
758
Adrian Hunter99fa2982015-04-30 17:37:25 +0300759 if (!inject->itrace_synth_opts.set)
760 auxtrace_index__free(&session->auxtrace_index);
761
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100762 if (!data_out->is_pipe)
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300763 lseek(fd, output_data_offset, SEEK_SET);
Andrew Vagine558a5b2012-08-07 16:56:02 +0400764
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -0300765 ret = perf_session__process_events(session);
David Carrillo-Cisnerosbb8d5212017-04-10 13:14:26 -0700766 if (ret)
767 return ret;
Tom Zanussi454c4072010-05-01 01:41:20 -0500768
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100769 if (!data_out->is_pipe) {
Adrian Hunter640dad42016-03-07 16:44:38 -0300770 if (inject->build_ids)
Adrian Huntere38b43c2014-07-14 13:02:34 +0300771 perf_header__set_feat(&session->header,
772 HEADER_BUILD_ID);
Adrian Hunter640dad42016-03-07 16:44:38 -0300773 /*
774 * Keep all buildids when there is unprocessed AUX data because
775 * it is not known which ones the AUX trace hits.
776 */
777 if (perf_header__has_feat(&session->header, HEADER_BUILD_ID) &&
778 inject->have_auxtrace && !inject->itrace_synth_opts.set)
779 dsos__hit_all(session);
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300780 /*
781 * The AUX areas have been removed and replaced with
Adrian Hunter73117302015-09-25 16:15:54 +0300782 * synthesized hardware events, so clear the feature flag and
783 * remove the evsel.
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300784 */
Adrian Hunter051a01b2015-09-25 16:15:43 +0300785 if (inject->itrace_synth_opts.set) {
Jiri Olsa32dcd022019-07-21 13:23:51 +0200786 struct evsel *evsel;
Adrian Hunter73117302015-09-25 16:15:54 +0300787
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300788 perf_header__clear_feat(&session->header,
789 HEADER_AUXTRACE);
Adrian Hunterec90e422020-04-29 18:07:46 +0300790 if (inject->itrace_synth_opts.last_branch ||
791 inject->itrace_synth_opts.add_last_branch)
Adrian Hunter051a01b2015-09-25 16:15:43 +0300792 perf_header__set_feat(&session->header,
793 HEADER_BRANCH_STACK);
Adrian Hunter73117302015-09-25 16:15:54 +0300794 evsel = perf_evlist__id2evsel_strict(session->evlist,
795 inject->aux_id);
796 if (evsel) {
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -0300797 pr_debug("Deleting %s\n", evsel__name(evsel));
Jiri Olsa16251022019-07-21 13:24:00 +0200798 evlist__remove(session->evlist, evsel);
Jiri Olsa5eb2dd22019-07-21 13:23:57 +0200799 evsel__delete(evsel);
Adrian Hunter73117302015-09-25 16:15:54 +0300800 }
Adrian Hunter051a01b2015-09-25 16:15:43 +0300801 }
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300802 session->header.data_offset = output_data_offset;
Andrew Vagine558a5b2012-08-07 16:56:02 +0400803 session->header.data_size = inject->bytes_written;
Namhyung Kim42aa2762015-01-29 17:06:48 +0900804 perf_session__write_header(session, session->evlist, fd, true);
Andrew Vagine558a5b2012-08-07 16:56:02 +0400805 }
806
Tom Zanussi454c4072010-05-01 01:41:20 -0500807 return ret;
808}
809
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -0300810int cmd_inject(int argc, const char **argv)
Tom Zanussi454c4072010-05-01 01:41:20 -0500811{
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300812 struct perf_inject inject = {
813 .tool = {
814 .sample = perf_event__repipe_sample,
Namhyung Kim2946ece2020-10-12 16:02:10 +0900815 .read = perf_event__repipe_sample,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300816 .mmap = perf_event__repipe,
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200817 .mmap2 = perf_event__repipe,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300818 .comm = perf_event__repipe,
Namhyung Kim2946ece2020-10-12 16:02:10 +0900819 .namespaces = perf_event__repipe,
820 .cgroup = perf_event__repipe,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300821 .fork = perf_event__repipe,
822 .exit = perf_event__repipe,
823 .lost = perf_event__repipe,
Adrian Hunterd8145b32015-11-13 11:48:32 +0200824 .lost_samples = perf_event__repipe,
Adrian Hunter4a96f7a2015-04-30 17:37:29 +0300825 .aux = perf_event__repipe,
Adrian Hunter0ad21f62015-04-30 17:37:30 +0300826 .itrace_start = perf_event__repipe,
Adrian Hunter02860392015-07-21 12:44:03 +0300827 .context_switch = perf_event__repipe,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300828 .throttle = perf_event__repipe,
829 .unthrottle = perf_event__repipe,
Namhyung Kim2946ece2020-10-12 16:02:10 +0900830 .ksymbol = perf_event__repipe,
831 .bpf = perf_event__repipe,
832 .text_poke = perf_event__repipe,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300833 .attr = perf_event__repipe_attr,
Namhyung Kim2946ece2020-10-12 16:02:10 +0900834 .event_update = perf_event__repipe_event_update,
Adrian Hunter47c3d102013-07-04 16:20:21 +0300835 .tracing_data = perf_event__repipe_op2_synth,
Arnaldo Carvalho de Melod704ebd2015-03-03 12:37:54 -0300836 .finished_round = perf_event__repipe_oe_synth,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300837 .build_id = perf_event__repipe_op2_synth,
Adrian Hunter3c659ee2014-10-27 15:49:22 +0200838 .id_index = perf_event__repipe_op2_synth,
Namhyung Kim2946ece2020-10-12 16:02:10 +0900839 .auxtrace_info = perf_event__repipe_op2_synth,
840 .auxtrace_error = perf_event__repipe_op2_synth,
841 .time_conv = perf_event__repipe_op2_synth,
842 .thread_map = perf_event__repipe_op2_synth,
843 .cpu_map = perf_event__repipe_op2_synth,
844 .stat_config = perf_event__repipe_op2_synth,
845 .stat = perf_event__repipe_op2_synth,
846 .stat_round = perf_event__repipe_op2_synth,
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -0700847 .feature = perf_event__repipe_op2_synth,
Namhyung Kim2946ece2020-10-12 16:02:10 +0900848 .compressed = perf_event__repipe_op4_synth,
849 .auxtrace = perf_event__repipe_auxtrace,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300850 },
Andrew Vagine558a5b2012-08-07 16:56:02 +0400851 .input_name = "-",
Andrew Vagin26a031e2012-08-07 16:56:04 +0400852 .samples = LIST_HEAD_INIT(inject.samples),
Jiri Olsa34069122013-10-29 19:04:57 +0100853 .output = {
Jiri Olsa2d4f2792019-02-21 10:41:30 +0100854 .path = "-",
855 .mode = PERF_DATA_MODE_WRITE,
Jiri Olsa34069122013-10-29 19:04:57 +0100856 },
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300857 };
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100858 struct perf_data data = {
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900859 .mode = PERF_DATA_MODE_READ,
860 };
861 int ret;
862
Stephane Eranian9b07e272015-11-30 10:02:21 +0100863 struct option options[] = {
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300864 OPT_BOOLEAN('b', "build-ids", &inject.build_ids,
865 "Inject build-ids into the output stream"),
Namhyung Kim27c9c342020-10-12 16:02:13 +0900866 OPT_BOOLEAN(0, "buildid-all", &inject.build_id_all,
867 "Inject build-ids of all DSOs into the output stream"),
Andrew Vagine558a5b2012-08-07 16:56:02 +0400868 OPT_STRING('i', "input", &inject.input_name, "file",
869 "input file name"),
Jiri Olsa2d4f2792019-02-21 10:41:30 +0100870 OPT_STRING('o', "output", &inject.output.path, "file",
Andrew Vagine558a5b2012-08-07 16:56:02 +0400871 "output file name"),
Andrew Vagin26a031e2012-08-07 16:56:04 +0400872 OPT_BOOLEAN('s', "sched-stat", &inject.sched_stat,
873 "Merge sched-stat and sched-switch for getting events "
874 "where and how long tasks slept"),
Jiri Olsae12b2022016-03-10 17:41:13 +0100875#ifdef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +0100876 OPT_BOOLEAN('j', "jit", &inject.jit_mode, "merge jitdump files into perf.data file"),
Jiri Olsae12b2022016-03-10 17:41:13 +0100877#endif
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300878 OPT_INCR('v', "verbose", &verbose,
879 "be more verbose (show build ids, etc)"),
Adrian Huntera7a2b8b2014-07-22 16:17:38 +0300880 OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name, "file",
881 "kallsyms pathname"),
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100882 OPT_BOOLEAN('f', "force", &data.force, "don't complain, do it"),
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300883 OPT_CALLBACK_OPTARG(0, "itrace", &inject.itrace_synth_opts,
Andi Kleenc12e0392018-09-13 20:10:31 -0700884 NULL, "opts", "Instruction Tracing options\n"
885 ITRACE_HELP,
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300886 itrace_parse_synth_opts),
Adrian Hunterf56fb982015-09-25 16:15:55 +0300887 OPT_BOOLEAN(0, "strip", &inject.strip,
888 "strip non-synthesized events (use with --itrace)"),
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300889 OPT_END()
890 };
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300891 const char * const inject_usage[] = {
892 "perf inject [<options>]",
893 NULL
894 };
Jiri Olsae12b2022016-03-10 17:41:13 +0100895#ifndef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +0100896 set_option_nobuild(options, 'j', "jit", "NO_LIBELF=1", true);
897#endif
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300898 argc = parse_options(argc, argv, options, inject_usage, 0);
Tom Zanussi454c4072010-05-01 01:41:20 -0500899
900 /*
901 * Any (unrecognized) arguments left?
902 */
903 if (argc)
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300904 usage_with_options(inject_usage, options);
Tom Zanussi454c4072010-05-01 01:41:20 -0500905
Adrian Hunterf56fb982015-09-25 16:15:55 +0300906 if (inject.strip && !inject.itrace_synth_opts.set) {
907 pr_err("--strip option requires --itrace option\n");
908 return -1;
909 }
910
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100911 if (perf_data__open(&inject.output)) {
Jiri Olsa34069122013-10-29 19:04:57 +0100912 perror("failed to create output file");
913 return -1;
Andrew Vagine558a5b2012-08-07 16:56:02 +0400914 }
915
Jiri Olsa2d4f2792019-02-21 10:41:30 +0100916 data.path = inject.input_name;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100917 inject.session = perf_session__new(&data, true, &inject.tool);
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +0530918 if (IS_ERR(inject.session))
919 return PTR_ERR(inject.session);
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900920
Alexey Budankov371a3372019-03-18 20:45:44 +0300921 if (zstd_init(&(inject.session->zstd_data), 0) < 0)
922 pr_warning("Decompression initialization failed.\n");
923
Namhyung Kim27c9c342020-10-12 16:02:13 +0900924 if (inject.build_ids && !inject.build_id_all) {
Arnaldo Carvalho de Melo921f3fa2016-01-22 18:41:00 -0300925 /*
926 * to make sure the mmap records are ordered correctly
927 * and so that the correct especially due to jitted code
928 * mmaps. We cannot generate the buildid hit list and
929 * inject the jit mmaps at the same time for now.
930 */
931 inject.tool.ordered_events = true;
932 inject.tool.ordering_requires_timestamps = true;
933 }
Namhyung Kim27c9c342020-10-12 16:02:13 +0900934
935 if (inject.sched_stat) {
936 inject.tool.ordered_events = true;
937 }
938
Jiri Olsae12b2022016-03-10 17:41:13 +0100939#ifdef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +0100940 if (inject.jit_mode) {
Stephane Eranian9b07e272015-11-30 10:02:21 +0100941 inject.tool.mmap2 = perf_event__jit_repipe_mmap2;
942 inject.tool.mmap = perf_event__jit_repipe_mmap;
943 inject.tool.ordered_events = true;
944 inject.tool.ordering_requires_timestamps = true;
945 /*
946 * JIT MMAP injection injects all MMAP events in one go, so it
947 * does not obey finished_round semantics.
948 */
949 inject.tool.finished_round = perf_event__drop_oe;
950 }
951#endif
Taeung Song9fedfb02015-06-30 17:15:20 +0900952 ret = symbol__init(&inject.session->header.env);
953 if (ret < 0)
954 goto out_delete;
Tom Zanussi454c4072010-05-01 01:41:20 -0500955
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900956 ret = __cmd_inject(&inject);
957
Taeung Song9fedfb02015-06-30 17:15:20 +0900958out_delete:
Alexey Budankov371a3372019-03-18 20:45:44 +0300959 zstd_fini(&(inject.session->zstd_data));
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900960 perf_session__delete(inject.session);
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900961 return ret;
Tom Zanussi454c4072010-05-01 01:41:20 -0500962}