blob: fbf43a454cbad2ccd37ab3cc4f1718de6d40c05d [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;
Namhyung Kimfea20d62021-07-19 15:31:51 -070049 bool is_pipe;
Jiri Olsa34069122013-10-29 19:04:57 +010050 const char *input_name;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +010051 struct perf_data output;
Jiri Olsa34069122013-10-29 19:04:57 +010052 u64 bytes_written;
Adrian Hunter73117302015-09-25 16:15:54 +030053 u64 aux_id;
Jiri Olsa34069122013-10-29 19:04:57 +010054 struct list_head samples;
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +030055 struct itrace_synth_opts itrace_synth_opts;
Adrian Hunterba2675b2019-11-15 14:42:18 +020056 char event_copy[PERF_SAMPLE_MAX_SIZE];
Andrew Vagin26a031e2012-08-07 16:56:04 +040057};
58
59struct event_entry {
60 struct list_head node;
61 u32 tid;
Gustavo A. R. Silva6549a8c2020-05-15 12:29:26 -050062 union perf_event event[];
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -030063};
Tom Zanussi454c4072010-05-01 01:41:20 -050064
Namhyung Kim27c9c342020-10-12 16:02:13 +090065static int dso__inject_build_id(struct dso *dso, struct perf_tool *tool,
66 struct machine *machine, u8 cpumode, u32 flags);
67
Adrian Huntercd17a9b2015-04-21 12:21:54 +030068static int output_bytes(struct perf_inject *inject, void *buf, size_t sz)
Tom Zanussi454c4072010-05-01 01:41:20 -050069{
Jiri Olsa34069122013-10-29 19:04:57 +010070 ssize_t size;
Tom Zanussi454c4072010-05-01 01:41:20 -050071
Jiri Olsa8ceb41d2017-01-23 22:07:59 +010072 size = perf_data__write(&inject->output, buf, sz);
Jiri Olsa34069122013-10-29 19:04:57 +010073 if (size < 0)
74 return -errno;
Tom Zanussi454c4072010-05-01 01:41:20 -050075
Jiri Olsa34069122013-10-29 19:04:57 +010076 inject->bytes_written += size;
Tom Zanussi454c4072010-05-01 01:41:20 -050077 return 0;
78}
79
Adrian Huntercd17a9b2015-04-21 12:21:54 +030080static int perf_event__repipe_synth(struct perf_tool *tool,
81 union perf_event *event)
82{
83 struct perf_inject *inject = container_of(tool, struct perf_inject,
84 tool);
85
86 return output_bytes(inject, event, event->header.size);
87}
88
Arnaldo Carvalho de Melod704ebd2015-03-03 12:37:54 -030089static int perf_event__repipe_oe_synth(struct perf_tool *tool,
90 union perf_event *event,
91 struct ordered_events *oe __maybe_unused)
92{
93 return perf_event__repipe_synth(tool, event);
94}
95
Jiri Olsae12b2022016-03-10 17:41:13 +010096#ifdef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +010097static int perf_event__drop_oe(struct perf_tool *tool __maybe_unused,
98 union perf_event *event __maybe_unused,
99 struct ordered_events *oe __maybe_unused)
100{
101 return 0;
102}
103#endif
104
Jiri Olsa89f16882018-09-13 14:54:03 +0200105static int perf_event__repipe_op2_synth(struct perf_session *session,
106 union perf_event *event)
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200107{
Jiri Olsa89f16882018-09-13 14:54:03 +0200108 return perf_event__repipe_synth(session->tool, event);
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200109}
110
Namhyung Kim2946ece2020-10-12 16:02:10 +0900111static int perf_event__repipe_op4_synth(struct perf_session *session,
112 union perf_event *event,
113 u64 data __maybe_unused)
114{
115 return perf_event__repipe_synth(session->tool, event);
116}
117
Adrian Hunter47c3d102013-07-04 16:20:21 +0300118static int perf_event__repipe_attr(struct perf_tool *tool,
119 union perf_event *event,
Jiri Olsa63503db2019-07-21 13:23:52 +0200120 struct evlist **pevlist)
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -0200121{
Adrian Hunter89c97d92013-10-22 10:34:09 +0300122 struct perf_inject *inject = container_of(tool, struct perf_inject,
123 tool);
Stephane Eranian1a1ed1b2012-05-15 13:28:11 +0200124 int ret;
Adrian Hunter47c3d102013-07-04 16:20:21 +0300125
126 ret = perf_event__process_attr(tool, event, pevlist);
Stephane Eranian1a1ed1b2012-05-15 13:28:11 +0200127 if (ret)
128 return ret;
129
Namhyung Kimfea20d62021-07-19 15:31:51 -0700130 if (!inject->is_pipe)
Adrian Hunter89c97d92013-10-22 10:34:09 +0300131 return 0;
132
Adrian Hunter47c3d102013-07-04 16:20:21 +0300133 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -0200134}
135
Namhyung Kim2946ece2020-10-12 16:02:10 +0900136static int perf_event__repipe_event_update(struct perf_tool *tool,
137 union perf_event *event,
138 struct evlist **pevlist __maybe_unused)
139{
140 return perf_event__repipe_synth(tool, event);
141}
142
Adrian Huntere31f0d02015-04-30 17:37:27 +0300143#ifdef HAVE_AUXTRACE_SUPPORT
144
145static int copy_bytes(struct perf_inject *inject, int fd, off_t size)
146{
147 char buf[4096];
148 ssize_t ssz;
149 int ret;
150
151 while (size > 0) {
152 ssz = read(fd, buf, min(size, (off_t)sizeof(buf)));
153 if (ssz < 0)
154 return -errno;
155 ret = output_bytes(inject, buf, ssz);
156 if (ret)
157 return ret;
158 size -= ssz;
159 }
160
161 return 0;
162}
163
Jiri Olsa73365552018-09-13 14:54:04 +0200164static s64 perf_event__repipe_auxtrace(struct perf_session *session,
165 union perf_event *event)
Adrian Huntercd17a9b2015-04-21 12:21:54 +0300166{
Jiri Olsa73365552018-09-13 14:54:04 +0200167 struct perf_tool *tool = session->tool;
Adrian Huntercd17a9b2015-04-21 12:21:54 +0300168 struct perf_inject *inject = container_of(tool, struct perf_inject,
169 tool);
170 int ret;
171
Adrian Huntercd10b282015-04-30 17:37:26 +0300172 inject->have_auxtrace = true;
173
Adrian Hunter99fa2982015-04-30 17:37:25 +0300174 if (!inject->output.is_pipe) {
175 off_t offset;
176
Jiri Olsaeae8ad82017-01-23 22:25:41 +0100177 offset = lseek(inject->output.file.fd, 0, SEEK_CUR);
Adrian Hunter99fa2982015-04-30 17:37:25 +0300178 if (offset == -1)
179 return -errno;
180 ret = auxtrace_index__auxtrace_event(&session->auxtrace_index,
181 event, offset);
182 if (ret < 0)
183 return ret;
184 }
185
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100186 if (perf_data__is_pipe(session->data) || !session->one_mmap) {
Adrian Huntercd17a9b2015-04-21 12:21:54 +0300187 ret = output_bytes(inject, event, event->header.size);
188 if (ret < 0)
189 return ret;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100190 ret = copy_bytes(inject, perf_data__fd(session->data),
Adrian Huntercd17a9b2015-04-21 12:21:54 +0300191 event->auxtrace.size);
192 } else {
193 ret = output_bytes(inject, event,
194 event->header.size + event->auxtrace.size);
195 }
196 if (ret < 0)
197 return ret;
198
199 return event->auxtrace.size;
200}
201
Adrian Huntere31f0d02015-04-30 17:37:27 +0300202#else
203
204static s64
Jiri Olsa73365552018-09-13 14:54:04 +0200205perf_event__repipe_auxtrace(struct perf_session *session __maybe_unused,
206 union perf_event *event __maybe_unused)
Adrian Huntere31f0d02015-04-30 17:37:27 +0300207{
208 pr_err("AUX area tracing not supported\n");
209 return -EINVAL;
210}
211
212#endif
213
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200214static int perf_event__repipe(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200215 union perf_event *event,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300216 struct perf_sample *sample __maybe_unused,
Adrian Hunter63c2c9f2013-07-04 16:20:20 +0300217 struct machine *machine __maybe_unused)
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -0200218{
Adrian Hunter63c2c9f2013-07-04 16:20:20 +0300219 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -0200220}
221
Adrian Hunterf56fb982015-09-25 16:15:55 +0300222static int perf_event__drop(struct perf_tool *tool __maybe_unused,
223 union perf_event *event __maybe_unused,
224 struct perf_sample *sample __maybe_unused,
225 struct machine *machine __maybe_unused)
226{
227 return 0;
228}
229
Adrian Hunter73117302015-09-25 16:15:54 +0300230static int perf_event__drop_aux(struct perf_tool *tool,
231 union perf_event *event __maybe_unused,
232 struct perf_sample *sample,
233 struct machine *machine __maybe_unused)
234{
235 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
236
237 if (!inject->aux_id)
238 inject->aux_id = sample->id;
239
240 return 0;
241}
242
Adrian Hunterba2675b2019-11-15 14:42:18 +0200243static union perf_event *
244perf_inject__cut_auxtrace_sample(struct perf_inject *inject,
245 union perf_event *event,
246 struct perf_sample *sample)
247{
248 size_t sz1 = sample->aux_sample.data - (void *)event;
249 size_t sz2 = event->header.size - sample->aux_sample.size - sz1;
250 union perf_event *ev = (union perf_event *)inject->event_copy;
251
252 if (sz1 > event->header.size || sz2 > event->header.size ||
253 sz1 + sz2 > event->header.size ||
254 sz1 < sizeof(struct perf_event_header) + sizeof(u64))
255 return event;
256
257 memcpy(ev, event, sz1);
258 memcpy((void *)ev + sz1, (void *)event + event->header.size - sz2, sz2);
259 ev->header.size = sz1 + sz2;
260 ((u64 *)((void *)ev + sz1))[-1] = 0;
261
262 return ev;
263}
264
Andrew Vagin26a031e2012-08-07 16:56:04 +0400265typedef int (*inject_handler)(struct perf_tool *tool,
266 union perf_event *event,
267 struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200268 struct evsel *evsel,
Andrew Vagin26a031e2012-08-07 16:56:04 +0400269 struct machine *machine);
270
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200271static int perf_event__repipe_sample(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200272 union perf_event *event,
Andrew Vagin26a031e2012-08-07 16:56:04 +0400273 struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200274 struct evsel *evsel,
Andrew Vagin26a031e2012-08-07 16:56:04 +0400275 struct machine *machine)
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300276{
Adrian Hunterba2675b2019-11-15 14:42:18 +0200277 struct perf_inject *inject = container_of(tool, struct perf_inject,
278 tool);
279
Arnaldo Carvalho de Melo40978e92019-07-03 16:02:09 -0300280 if (evsel && evsel->handler) {
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300281 inject_handler f = evsel->handler;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400282 return f(tool, event, sample, evsel, machine);
283 }
284
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400285 build_id__mark_dso_hit(tool, event, sample, evsel, machine);
286
Adrian Hunterba2675b2019-11-15 14:42:18 +0200287 if (inject->itrace_synth_opts.set && sample->aux_sample.size)
288 event = perf_inject__cut_auxtrace_sample(inject, event, sample);
289
Adrian Hunter63c2c9f2013-07-04 16:20:20 +0300290 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300291}
292
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200293static int perf_event__repipe_mmap(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200294 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200295 struct perf_sample *sample,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200296 struct machine *machine)
Tom Zanussi454c4072010-05-01 01:41:20 -0500297{
298 int err;
299
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200300 err = perf_event__process_mmap(tool, event, sample, machine);
301 perf_event__repipe(tool, event, sample, machine);
Tom Zanussi454c4072010-05-01 01:41:20 -0500302
303 return err;
304}
305
Jiri Olsae12b2022016-03-10 17:41:13 +0100306#ifdef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +0100307static int perf_event__jit_repipe_mmap(struct perf_tool *tool,
308 union perf_event *event,
309 struct perf_sample *sample,
310 struct machine *machine)
311{
312 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
313 u64 n = 0;
Adrian Hunter570735b2016-03-07 16:44:40 -0300314 int ret;
Stephane Eranian9b07e272015-11-30 10:02:21 +0100315
316 /*
317 * if jit marker, then inject jit mmaps and generate ELF images
318 */
Adrian Hunter570735b2016-03-07 16:44:40 -0300319 ret = jit_process(inject->session, &inject->output, machine,
Yonatan Goldschmidt67dec922020-11-05 03:56:04 +0200320 event->mmap.filename, event->mmap.pid, event->mmap.tid, &n);
Adrian Hunter570735b2016-03-07 16:44:40 -0300321 if (ret < 0)
322 return ret;
323 if (ret) {
Stephane Eranian9b07e272015-11-30 10:02:21 +0100324 inject->bytes_written += n;
325 return 0;
326 }
327 return perf_event__repipe_mmap(tool, event, sample, machine);
328}
329#endif
330
Namhyung Kim27c9c342020-10-12 16:02:13 +0900331static struct dso *findnew_dso(int pid, int tid, const char *filename,
332 struct dso_id *id, struct machine *machine)
333{
334 struct thread *thread;
335 struct nsinfo *nsi = NULL;
336 struct nsinfo *nnsi;
337 struct dso *dso;
338 bool vdso;
339
340 thread = machine__findnew_thread(machine, pid, tid);
341 if (thread == NULL) {
342 pr_err("cannot find or create a task %d/%d.\n", tid, pid);
343 return NULL;
344 }
345
346 vdso = is_vdso_map(filename);
347 nsi = nsinfo__get(thread->nsinfo);
348
349 if (vdso) {
350 /* The vdso maps are always on the host and not the
351 * container. Ensure that we don't use setns to look
352 * them up.
353 */
354 nnsi = nsinfo__copy(nsi);
355 if (nnsi) {
356 nsinfo__put(nsi);
357 nnsi->need_setns = false;
358 nsi = nnsi;
359 }
360 dso = machine__findnew_vdso(machine, thread);
361 } else {
362 dso = machine__findnew_dso_id(machine, filename, id);
363 }
364
Riccardo Mancini0967ebf2021-07-15 18:07:06 +0200365 if (dso) {
366 nsinfo__put(dso->nsinfo);
Namhyung Kim27c9c342020-10-12 16:02:13 +0900367 dso->nsinfo = nsi;
Riccardo Mancini0967ebf2021-07-15 18:07:06 +0200368 } else
Namhyung Kim27c9c342020-10-12 16:02:13 +0900369 nsinfo__put(nsi);
370
371 thread__put(thread);
372 return dso;
373}
374
375static int perf_event__repipe_buildid_mmap(struct perf_tool *tool,
376 union perf_event *event,
377 struct perf_sample *sample,
378 struct machine *machine)
379{
380 struct dso *dso;
381
382 dso = findnew_dso(event->mmap.pid, event->mmap.tid,
383 event->mmap.filename, NULL, machine);
384
385 if (dso && !dso->hit) {
386 dso->hit = 1;
387 dso__inject_build_id(dso, tool, machine, sample->cpumode, 0);
Namhyung Kim27c9c342020-10-12 16:02:13 +0900388 }
Namhyung Kim0c3f7b32021-05-24 15:50:50 -0700389 dso__put(dso);
Namhyung Kim27c9c342020-10-12 16:02:13 +0900390
391 return perf_event__repipe(tool, event, sample, machine);
392}
393
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200394static int perf_event__repipe_mmap2(struct perf_tool *tool,
395 union perf_event *event,
396 struct perf_sample *sample,
397 struct machine *machine)
398{
399 int err;
400
401 err = perf_event__process_mmap2(tool, event, sample, machine);
402 perf_event__repipe(tool, event, sample, machine);
403
Namhyung Kimf7fc0d12021-05-24 15:50:51 -0700404 if (event->header.misc & PERF_RECORD_MISC_MMAP_BUILD_ID) {
405 struct dso *dso;
406
407 dso = findnew_dso(event->mmap2.pid, event->mmap2.tid,
408 event->mmap2.filename, NULL, machine);
409 if (dso) {
410 /* mark it not to inject build-id */
411 dso->hit = 1;
412 }
413 dso__put(dso);
414 }
415
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200416 return err;
417}
418
Jiri Olsae12b2022016-03-10 17:41:13 +0100419#ifdef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +0100420static int perf_event__jit_repipe_mmap2(struct perf_tool *tool,
421 union perf_event *event,
422 struct perf_sample *sample,
423 struct machine *machine)
424{
425 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
426 u64 n = 0;
Adrian Hunter570735b2016-03-07 16:44:40 -0300427 int ret;
Stephane Eranian9b07e272015-11-30 10:02:21 +0100428
429 /*
430 * if jit marker, then inject jit mmaps and generate ELF images
431 */
Adrian Hunter570735b2016-03-07 16:44:40 -0300432 ret = jit_process(inject->session, &inject->output, machine,
Yonatan Goldschmidt67dec922020-11-05 03:56:04 +0200433 event->mmap2.filename, event->mmap2.pid, event->mmap2.tid, &n);
Adrian Hunter570735b2016-03-07 16:44:40 -0300434 if (ret < 0)
435 return ret;
436 if (ret) {
Stephane Eranian9b07e272015-11-30 10:02:21 +0100437 inject->bytes_written += n;
438 return 0;
439 }
440 return perf_event__repipe_mmap2(tool, event, sample, machine);
441}
442#endif
443
Namhyung Kim27c9c342020-10-12 16:02:13 +0900444static int perf_event__repipe_buildid_mmap2(struct perf_tool *tool,
445 union perf_event *event,
446 struct perf_sample *sample,
447 struct machine *machine)
448{
449 struct dso_id dso_id = {
450 .maj = event->mmap2.maj,
451 .min = event->mmap2.min,
452 .ino = event->mmap2.ino,
453 .ino_generation = event->mmap2.ino_generation,
454 };
455 struct dso *dso;
456
Namhyung Kimf7fc0d12021-05-24 15:50:51 -0700457 if (event->header.misc & PERF_RECORD_MISC_MMAP_BUILD_ID) {
458 /* cannot use dso_id since it'd have invalid info */
459 dso = findnew_dso(event->mmap2.pid, event->mmap2.tid,
460 event->mmap2.filename, NULL, machine);
461 if (dso) {
462 /* mark it not to inject build-id */
463 dso->hit = 1;
464 }
465 dso__put(dso);
466 return 0;
467 }
468
Namhyung Kim27c9c342020-10-12 16:02:13 +0900469 dso = findnew_dso(event->mmap2.pid, event->mmap2.tid,
470 event->mmap2.filename, &dso_id, machine);
471
472 if (dso && !dso->hit) {
473 dso->hit = 1;
474 dso__inject_build_id(dso, tool, machine, sample->cpumode,
475 event->mmap2.flags);
Namhyung Kim27c9c342020-10-12 16:02:13 +0900476 }
Namhyung Kim0c3f7b32021-05-24 15:50:50 -0700477 dso__put(dso);
Namhyung Kim27c9c342020-10-12 16:02:13 +0900478
479 perf_event__repipe(tool, event, sample, machine);
480
481 return 0;
482}
483
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300484static int perf_event__repipe_fork(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200485 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200486 struct perf_sample *sample,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200487 struct machine *machine)
Tom Zanussi454c4072010-05-01 01:41:20 -0500488{
489 int err;
490
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300491 err = perf_event__process_fork(tool, event, sample, machine);
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200492 perf_event__repipe(tool, event, sample, machine);
Tom Zanussi454c4072010-05-01 01:41:20 -0500493
494 return err;
495}
496
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300497static int perf_event__repipe_comm(struct perf_tool *tool,
498 union perf_event *event,
499 struct perf_sample *sample,
500 struct machine *machine)
501{
502 int err;
503
504 err = perf_event__process_comm(tool, event, sample, machine);
505 perf_event__repipe(tool, event, sample, machine);
506
507 return err;
508}
509
Hari Bathinif3b36142017-03-08 02:11:43 +0530510static int perf_event__repipe_namespaces(struct perf_tool *tool,
511 union perf_event *event,
512 struct perf_sample *sample,
513 struct machine *machine)
514{
515 int err = perf_event__process_namespaces(tool, event, sample, machine);
516
517 perf_event__repipe(tool, event, sample, machine);
518
519 return err;
520}
521
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300522static int perf_event__repipe_exit(struct perf_tool *tool,
523 union perf_event *event,
524 struct perf_sample *sample,
525 struct machine *machine)
526{
527 int err;
528
529 err = perf_event__process_exit(tool, event, sample, machine);
530 perf_event__repipe(tool, event, sample, machine);
531
532 return err;
533}
534
Jiri Olsa89f16882018-09-13 14:54:03 +0200535static int perf_event__repipe_tracing_data(struct perf_session *session,
536 union perf_event *event)
Tom Zanussi454c4072010-05-01 01:41:20 -0500537{
Jiri Olsa89f16882018-09-13 14:54:03 +0200538 perf_event__repipe_synth(session->tool, event);
Tom Zanussi454c4072010-05-01 01:41:20 -0500539
Minghao Chif0ac5b82022-01-12 08:01:09 +0000540 return perf_event__process_tracing_data(session, event);
Tom Zanussi454c4072010-05-01 01:41:20 -0500541}
542
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300543static int dso__read_build_id(struct dso *dso)
Tom Zanussi454c4072010-05-01 01:41:20 -0500544{
Namhyung Kim336c95b2020-10-12 16:02:11 +0900545 struct nscookie nsc;
546
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300547 if (dso->has_build_id)
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300548 return 0;
Tom Zanussi454c4072010-05-01 01:41:20 -0500549
Namhyung Kim336c95b2020-10-12 16:02:11 +0900550 nsinfo__mountns_enter(dso->nsinfo, &nsc);
Jiri Olsaf7668192020-10-13 21:24:34 +0200551 if (filename__read_build_id(dso->long_name, &dso->bid) > 0)
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300552 dso->has_build_id = true;
Namhyung Kim336c95b2020-10-12 16:02:11 +0900553 nsinfo__mountns_exit(&nsc);
Tom Zanussi454c4072010-05-01 01:41:20 -0500554
Namhyung Kim336c95b2020-10-12 16:02:11 +0900555 return dso->has_build_id ? 0 : -1;
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300556}
Tom Zanussi454c4072010-05-01 01:41:20 -0500557
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300558static int dso__inject_build_id(struct dso *dso, struct perf_tool *tool,
Namhyung Kime7b60c52020-10-12 16:02:12 +0900559 struct machine *machine, u8 cpumode, u32 flags)
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300560{
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300561 int err;
Tom Zanussi454c4072010-05-01 01:41:20 -0500562
Namhyung Kime7b60c52020-10-12 16:02:12 +0900563 if (is_anon_memory(dso->long_name) || flags & MAP_HUGETLB)
564 return 0;
565 if (is_no_dso_memory(dso->long_name))
566 return 0;
567
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300568 if (dso__read_build_id(dso) < 0) {
569 pr_debug("no build_id found for %s\n", dso->long_name);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300570 return -1;
571 }
Tom Zanussi454c4072010-05-01 01:41:20 -0500572
Namhyung Kime7b60c52020-10-12 16:02:12 +0900573 err = perf_event__synthesize_build_id(tool, dso, cpumode,
574 perf_event__repipe, machine);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300575 if (err) {
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300576 pr_err("Can't synthesize build_id event for %s\n", dso->long_name);
Tom Zanussi454c4072010-05-01 01:41:20 -0500577 return -1;
578 }
579
580 return 0;
581}
582
Namhyung Kim0bf02a02020-10-12 16:02:09 +0900583int perf_event__inject_buildid(struct perf_tool *tool, union perf_event *event,
584 struct perf_sample *sample,
585 struct evsel *evsel __maybe_unused,
586 struct machine *machine)
Tom Zanussi454c4072010-05-01 01:41:20 -0500587{
588 struct addr_location al;
589 struct thread *thread;
Tom Zanussi454c4072010-05-01 01:41:20 -0500590
Namhyung Kim13ce34d2014-05-12 09:56:42 +0900591 thread = machine__findnew_thread(machine, sample->pid, sample->tid);
Tom Zanussi454c4072010-05-01 01:41:20 -0500592 if (thread == NULL) {
593 pr_err("problem processing %d event, skipping it.\n",
594 event->header.type);
Tom Zanussi454c4072010-05-01 01:41:20 -0500595 goto repipe;
596 }
597
Arnaldo Carvalho de Melo71a84b52018-04-24 11:58:56 -0300598 if (thread__find_map(thread, sample->cpumode, sample->ip, &al)) {
Tom Zanussi454c4072010-05-01 01:41:20 -0500599 if (!al.map->dso->hit) {
600 al.map->dso->hit = 1;
Namhyung Kime7b60c52020-10-12 16:02:12 +0900601 dso__inject_build_id(al.map->dso, tool, machine,
602 sample->cpumode, al.map->flags);
Tom Zanussi454c4072010-05-01 01:41:20 -0500603 }
604 }
605
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300606 thread__put(thread);
Tom Zanussi454c4072010-05-01 01:41:20 -0500607repipe:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200608 perf_event__repipe(tool, event, sample, machine);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300609 return 0;
Tom Zanussi454c4072010-05-01 01:41:20 -0500610}
611
Andrew Vagin26a031e2012-08-07 16:56:04 +0400612static int perf_inject__sched_process_exit(struct perf_tool *tool,
613 union perf_event *event __maybe_unused,
614 struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200615 struct evsel *evsel __maybe_unused,
Andrew Vagin26a031e2012-08-07 16:56:04 +0400616 struct machine *machine __maybe_unused)
617{
618 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
619 struct event_entry *ent;
620
621 list_for_each_entry(ent, &inject->samples, node) {
622 if (sample->tid == ent->tid) {
623 list_del_init(&ent->node);
624 free(ent);
625 break;
626 }
627 }
628
629 return 0;
630}
631
632static int perf_inject__sched_switch(struct perf_tool *tool,
633 union perf_event *event,
634 struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200635 struct evsel *evsel,
Andrew Vagin26a031e2012-08-07 16:56:04 +0400636 struct machine *machine)
637{
638 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
639 struct event_entry *ent;
640
641 perf_inject__sched_process_exit(tool, event, sample, evsel, machine);
642
643 ent = malloc(event->header.size + sizeof(struct event_entry));
644 if (ent == NULL) {
645 color_fprintf(stderr, PERF_COLOR_RED,
646 "Not enough memory to process sched switch event!");
647 return -1;
648 }
649
650 ent->tid = sample->tid;
651 memcpy(&ent->event, event, event->header.size);
652 list_add(&ent->node, &inject->samples);
653 return 0;
654}
655
656static int perf_inject__sched_stat(struct perf_tool *tool,
657 union perf_event *event __maybe_unused,
658 struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200659 struct evsel *evsel,
Andrew Vagin26a031e2012-08-07 16:56:04 +0400660 struct machine *machine)
661{
662 struct event_entry *ent;
663 union perf_event *event_sw;
664 struct perf_sample sample_sw;
665 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
Arnaldo Carvalho de Meloefc0cdc2020-04-29 16:26:57 -0300666 u32 pid = evsel__intval(evsel, sample, "pid");
Andrew Vagin26a031e2012-08-07 16:56:04 +0400667
668 list_for_each_entry(ent, &inject->samples, node) {
669 if (pid == ent->tid)
670 goto found;
671 }
672
673 return 0;
674found:
675 event_sw = &ent->event[0];
Arnaldo Carvalho de Melo6b6017a2020-04-30 11:03:49 -0300676 evsel__parse_sample(evsel, event_sw, &sample_sw);
Andrew Vagin26a031e2012-08-07 16:56:04 +0400677
678 sample_sw.period = sample->period;
679 sample_sw.time = sample->time;
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200680 perf_event__synthesize_sample(event_sw, evsel->core.attr.sample_type,
681 evsel->core.attr.read_format, &sample_sw);
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400682 build_id__mark_dso_hit(tool, event_sw, &sample_sw, evsel, machine);
Andrew Vagin26a031e2012-08-07 16:56:04 +0400683 return perf_event__repipe(tool, event_sw, &sample_sw, machine);
684}
685
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300686static void sig_handler(int sig __maybe_unused)
Tom Zanussi454c4072010-05-01 01:41:20 -0500687{
688 session_done = 1;
689}
690
Arnaldo Carvalho de Melob14b36d2020-05-04 13:57:44 -0300691static int evsel__check_stype(struct evsel *evsel, u64 sample_type, const char *sample_msg)
Andrew Vagin26a031e2012-08-07 16:56:04 +0400692{
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200693 struct perf_event_attr *attr = &evsel->core.attr;
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -0300694 const char *name = evsel__name(evsel);
Andrew Vagin26a031e2012-08-07 16:56:04 +0400695
696 if (!(attr->sample_type & sample_type)) {
697 pr_err("Samples for %s event do not have %s attribute set.",
698 name, sample_msg);
699 return -EINVAL;
700 }
701
702 return 0;
703}
704
Adrian Hunterf56fb982015-09-25 16:15:55 +0300705static int drop_sample(struct perf_tool *tool __maybe_unused,
706 union perf_event *event __maybe_unused,
707 struct perf_sample *sample __maybe_unused,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200708 struct evsel *evsel __maybe_unused,
Adrian Hunterf56fb982015-09-25 16:15:55 +0300709 struct machine *machine __maybe_unused)
710{
711 return 0;
712}
713
714static void strip_init(struct perf_inject *inject)
715{
Jiri Olsa63503db2019-07-21 13:23:52 +0200716 struct evlist *evlist = inject->session->evlist;
Jiri Olsa32dcd022019-07-21 13:23:51 +0200717 struct evsel *evsel;
Adrian Hunterf56fb982015-09-25 16:15:55 +0300718
719 inject->tool.context_switch = perf_event__drop;
720
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300721 evlist__for_each_entry(evlist, evsel)
Adrian Hunterf56fb982015-09-25 16:15:55 +0300722 evsel->handler = drop_sample;
723}
724
Adrian Hunter83d7f5f2021-04-30 10:03:02 +0300725static int parse_vm_time_correlation(const struct option *opt, const char *str, int unset)
726{
727 struct perf_inject *inject = opt->value;
728 const char *args;
729 char *dry_run;
730
731 if (unset)
732 return 0;
733
734 inject->itrace_synth_opts.set = true;
735 inject->itrace_synth_opts.vm_time_correlation = true;
736 inject->in_place_update = true;
737
738 if (!str)
739 return 0;
740
741 dry_run = skip_spaces(str);
742 if (!strncmp(dry_run, "dry-run", strlen("dry-run"))) {
743 inject->itrace_synth_opts.vm_tm_corr_dry_run = true;
744 inject->in_place_update_dry_run = true;
745 args = dry_run + strlen("dry-run");
746 } else {
747 args = str;
748 }
749
750 inject->itrace_synth_opts.vm_tm_corr_args = strdup(args);
751
752 return inject->itrace_synth_opts.vm_tm_corr_args ? 0 : -ENOMEM;
753}
754
Adrian Hunterc271a552021-12-13 10:48:29 +0200755static int output_fd(struct perf_inject *inject)
756{
757 return inject->in_place_update ? -1 : perf_data__fd(&inject->output);
758}
759
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300760static int __cmd_inject(struct perf_inject *inject)
Tom Zanussi454c4072010-05-01 01:41:20 -0500761{
Tom Zanussi454c4072010-05-01 01:41:20 -0500762 int ret = -EINVAL;
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900763 struct perf_session *session = inject->session;
Adrian Hunterc271a552021-12-13 10:48:29 +0200764 int fd = output_fd(inject);
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300765 u64 output_data_offset;
Tom Zanussi454c4072010-05-01 01:41:20 -0500766
767 signal(SIGINT, sig_handler);
768
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300769 if (inject->build_ids || inject->sched_stat ||
Namhyung Kim27c9c342020-10-12 16:02:13 +0900770 inject->itrace_synth_opts.set || inject->build_id_all) {
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300771 inject->tool.mmap = perf_event__repipe_mmap;
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200772 inject->tool.mmap2 = perf_event__repipe_mmap2;
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300773 inject->tool.fork = perf_event__repipe_fork;
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300774 inject->tool.tracing_data = perf_event__repipe_tracing_data;
Tom Zanussi454c4072010-05-01 01:41:20 -0500775 }
776
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300777 output_data_offset = session->header.data_offset;
778
Namhyung Kim27c9c342020-10-12 16:02:13 +0900779 if (inject->build_id_all) {
780 inject->tool.mmap = perf_event__repipe_buildid_mmap;
781 inject->tool.mmap2 = perf_event__repipe_buildid_mmap2;
782 } else if (inject->build_ids) {
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400783 inject->tool.sample = perf_event__inject_buildid;
784 } else if (inject->sched_stat) {
Jiri Olsa32dcd022019-07-21 13:23:51 +0200785 struct evsel *evsel;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400786
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300787 evlist__for_each_entry(session->evlist, evsel) {
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -0300788 const char *name = evsel__name(evsel);
Andrew Vagin26a031e2012-08-07 16:56:04 +0400789
790 if (!strcmp(name, "sched:sched_switch")) {
Arnaldo Carvalho de Melob14b36d2020-05-04 13:57:44 -0300791 if (evsel__check_stype(evsel, PERF_SAMPLE_TID, "TID"))
Andrew Vagin26a031e2012-08-07 16:56:04 +0400792 return -EINVAL;
793
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300794 evsel->handler = perf_inject__sched_switch;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400795 } else if (!strcmp(name, "sched:sched_process_exit"))
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300796 evsel->handler = perf_inject__sched_process_exit;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400797 else if (!strncmp(name, "sched:sched_stat_", 17))
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300798 evsel->handler = perf_inject__sched_stat;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400799 }
Adrian Hunter83d7f5f2021-04-30 10:03:02 +0300800 } else if (inject->itrace_synth_opts.vm_time_correlation) {
801 session->itrace_synth_opts = &inject->itrace_synth_opts;
802 memset(&inject->tool, 0, sizeof(inject->tool));
803 inject->tool.id_index = perf_event__process_id_index;
804 inject->tool.auxtrace_info = perf_event__process_auxtrace_info;
805 inject->tool.auxtrace = perf_event__process_auxtrace;
806 inject->tool.auxtrace_error = perf_event__process_auxtrace_error;
807 inject->tool.ordered_events = true;
808 inject->tool.ordering_requires_timestamps = true;
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300809 } else if (inject->itrace_synth_opts.set) {
810 session->itrace_synth_opts = &inject->itrace_synth_opts;
811 inject->itrace_synth_opts.inject = true;
812 inject->tool.comm = perf_event__repipe_comm;
Hari Bathinif3b36142017-03-08 02:11:43 +0530813 inject->tool.namespaces = perf_event__repipe_namespaces;
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300814 inject->tool.exit = perf_event__repipe_exit;
Adrian Hunter29f6eec2019-12-04 14:08:00 +0200815 inject->tool.id_index = perf_event__process_id_index;
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300816 inject->tool.auxtrace_info = perf_event__process_auxtrace_info;
817 inject->tool.auxtrace = perf_event__process_auxtrace;
Adrian Hunter73117302015-09-25 16:15:54 +0300818 inject->tool.aux = perf_event__drop_aux;
Adrian Hunter61750472021-09-07 19:39:02 +0300819 inject->tool.itrace_start = perf_event__drop_aux;
820 inject->tool.aux_output_hw_id = perf_event__drop_aux;
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300821 inject->tool.ordered_events = true;
822 inject->tool.ordering_requires_timestamps = true;
823 /* Allow space in the header for new attributes */
Adrian Hunterc29d9792021-11-25 09:14:57 +0200824 output_data_offset = roundup(8192 + session->header.data_offset, 4096);
Adrian Hunterf56fb982015-09-25 16:15:55 +0300825 if (inject->strip)
826 strip_init(inject);
Andrew Vagin26a031e2012-08-07 16:56:04 +0400827 }
828
Adrian Hunter99fa2982015-04-30 17:37:25 +0300829 if (!inject->itrace_synth_opts.set)
830 auxtrace_index__free(&session->auxtrace_index);
831
Namhyung Kimfea20d62021-07-19 15:31:51 -0700832 if (!inject->is_pipe && !inject->in_place_update)
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300833 lseek(fd, output_data_offset, SEEK_SET);
Andrew Vagine558a5b2012-08-07 16:56:02 +0400834
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -0300835 ret = perf_session__process_events(session);
David Carrillo-Cisnerosbb8d5212017-04-10 13:14:26 -0700836 if (ret)
837 return ret;
Tom Zanussi454c4072010-05-01 01:41:20 -0500838
Namhyung Kimfea20d62021-07-19 15:31:51 -0700839 if (!inject->is_pipe && !inject->in_place_update) {
Adrian Hunter640dad42016-03-07 16:44:38 -0300840 if (inject->build_ids)
Adrian Huntere38b43c2014-07-14 13:02:34 +0300841 perf_header__set_feat(&session->header,
842 HEADER_BUILD_ID);
Adrian Hunter640dad42016-03-07 16:44:38 -0300843 /*
844 * Keep all buildids when there is unprocessed AUX data because
845 * it is not known which ones the AUX trace hits.
846 */
847 if (perf_header__has_feat(&session->header, HEADER_BUILD_ID) &&
848 inject->have_auxtrace && !inject->itrace_synth_opts.set)
849 dsos__hit_all(session);
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300850 /*
851 * The AUX areas have been removed and replaced with
Al Grant1c756cd2020-11-13 20:38:26 +0000852 * synthesized hardware events, so clear the feature flag.
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300853 */
Adrian Hunter051a01b2015-09-25 16:15:43 +0300854 if (inject->itrace_synth_opts.set) {
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300855 perf_header__clear_feat(&session->header,
856 HEADER_AUXTRACE);
Adrian Hunterec90e422020-04-29 18:07:46 +0300857 if (inject->itrace_synth_opts.last_branch ||
858 inject->itrace_synth_opts.add_last_branch)
Adrian Hunter051a01b2015-09-25 16:15:43 +0300859 perf_header__set_feat(&session->header,
860 HEADER_BRANCH_STACK);
861 }
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300862 session->header.data_offset = output_data_offset;
Andrew Vagine558a5b2012-08-07 16:56:02 +0400863 session->header.data_size = inject->bytes_written;
Namhyung Kim42aa2762015-01-29 17:06:48 +0900864 perf_session__write_header(session, session->evlist, fd, true);
Andrew Vagine558a5b2012-08-07 16:56:02 +0400865 }
866
Tom Zanussi454c4072010-05-01 01:41:20 -0500867 return ret;
868}
869
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -0300870int cmd_inject(int argc, const char **argv)
Tom Zanussi454c4072010-05-01 01:41:20 -0500871{
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300872 struct perf_inject inject = {
873 .tool = {
874 .sample = perf_event__repipe_sample,
Namhyung Kim2946ece2020-10-12 16:02:10 +0900875 .read = perf_event__repipe_sample,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300876 .mmap = perf_event__repipe,
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200877 .mmap2 = perf_event__repipe,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300878 .comm = perf_event__repipe,
Namhyung Kim2946ece2020-10-12 16:02:10 +0900879 .namespaces = perf_event__repipe,
880 .cgroup = perf_event__repipe,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300881 .fork = perf_event__repipe,
882 .exit = perf_event__repipe,
883 .lost = perf_event__repipe,
Adrian Hunterd8145b32015-11-13 11:48:32 +0200884 .lost_samples = perf_event__repipe,
Adrian Hunter4a96f7a2015-04-30 17:37:29 +0300885 .aux = perf_event__repipe,
Adrian Hunter0ad21f62015-04-30 17:37:30 +0300886 .itrace_start = perf_event__repipe,
Adrian Hunter61750472021-09-07 19:39:02 +0300887 .aux_output_hw_id = perf_event__repipe,
Adrian Hunter02860392015-07-21 12:44:03 +0300888 .context_switch = perf_event__repipe,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300889 .throttle = perf_event__repipe,
890 .unthrottle = perf_event__repipe,
Namhyung Kim2946ece2020-10-12 16:02:10 +0900891 .ksymbol = perf_event__repipe,
892 .bpf = perf_event__repipe,
893 .text_poke = perf_event__repipe,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300894 .attr = perf_event__repipe_attr,
Namhyung Kim2946ece2020-10-12 16:02:10 +0900895 .event_update = perf_event__repipe_event_update,
Adrian Hunter47c3d102013-07-04 16:20:21 +0300896 .tracing_data = perf_event__repipe_op2_synth,
Arnaldo Carvalho de Melod704ebd2015-03-03 12:37:54 -0300897 .finished_round = perf_event__repipe_oe_synth,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300898 .build_id = perf_event__repipe_op2_synth,
Adrian Hunter3c659ee2014-10-27 15:49:22 +0200899 .id_index = perf_event__repipe_op2_synth,
Namhyung Kim2946ece2020-10-12 16:02:10 +0900900 .auxtrace_info = perf_event__repipe_op2_synth,
901 .auxtrace_error = perf_event__repipe_op2_synth,
902 .time_conv = perf_event__repipe_op2_synth,
903 .thread_map = perf_event__repipe_op2_synth,
904 .cpu_map = perf_event__repipe_op2_synth,
905 .stat_config = perf_event__repipe_op2_synth,
906 .stat = perf_event__repipe_op2_synth,
907 .stat_round = perf_event__repipe_op2_synth,
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -0700908 .feature = perf_event__repipe_op2_synth,
Namhyung Kim2946ece2020-10-12 16:02:10 +0900909 .compressed = perf_event__repipe_op4_synth,
910 .auxtrace = perf_event__repipe_auxtrace,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300911 },
Andrew Vagine558a5b2012-08-07 16:56:02 +0400912 .input_name = "-",
Andrew Vagin26a031e2012-08-07 16:56:04 +0400913 .samples = LIST_HEAD_INIT(inject.samples),
Jiri Olsa34069122013-10-29 19:04:57 +0100914 .output = {
Jiri Olsa2d4f2792019-02-21 10:41:30 +0100915 .path = "-",
916 .mode = PERF_DATA_MODE_WRITE,
Namhyung Kim60136662020-10-30 14:47:42 +0900917 .use_stdio = true,
Jiri Olsa34069122013-10-29 19:04:57 +0100918 },
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300919 };
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100920 struct perf_data data = {
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900921 .mode = PERF_DATA_MODE_READ,
Namhyung Kim60136662020-10-30 14:47:42 +0900922 .use_stdio = true,
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900923 };
924 int ret;
Namhyung Kimc3a057d2021-07-19 15:31:52 -0700925 bool repipe = true;
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900926
Stephane Eranian9b07e272015-11-30 10:02:21 +0100927 struct option options[] = {
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300928 OPT_BOOLEAN('b', "build-ids", &inject.build_ids,
929 "Inject build-ids into the output stream"),
Namhyung Kim27c9c342020-10-12 16:02:13 +0900930 OPT_BOOLEAN(0, "buildid-all", &inject.build_id_all,
931 "Inject build-ids of all DSOs into the output stream"),
Andrew Vagine558a5b2012-08-07 16:56:02 +0400932 OPT_STRING('i', "input", &inject.input_name, "file",
933 "input file name"),
Jiri Olsa2d4f2792019-02-21 10:41:30 +0100934 OPT_STRING('o', "output", &inject.output.path, "file",
Andrew Vagine558a5b2012-08-07 16:56:02 +0400935 "output file name"),
Andrew Vagin26a031e2012-08-07 16:56:04 +0400936 OPT_BOOLEAN('s', "sched-stat", &inject.sched_stat,
937 "Merge sched-stat and sched-switch for getting events "
938 "where and how long tasks slept"),
Jiri Olsae12b2022016-03-10 17:41:13 +0100939#ifdef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +0100940 OPT_BOOLEAN('j', "jit", &inject.jit_mode, "merge jitdump files into perf.data file"),
Jiri Olsae12b2022016-03-10 17:41:13 +0100941#endif
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300942 OPT_INCR('v', "verbose", &verbose,
943 "be more verbose (show build ids, etc)"),
James Clarkb3a018f2021-10-18 14:48:43 +0100944 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
945 "file", "vmlinux pathname"),
946 OPT_BOOLEAN(0, "ignore-vmlinux", &symbol_conf.ignore_vmlinux,
947 "don't load vmlinux even if found"),
Adrian Huntera7a2b8b2014-07-22 16:17:38 +0300948 OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name, "file",
949 "kallsyms pathname"),
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100950 OPT_BOOLEAN('f', "force", &data.force, "don't complain, do it"),
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300951 OPT_CALLBACK_OPTARG(0, "itrace", &inject.itrace_synth_opts,
Andi Kleenc12e0392018-09-13 20:10:31 -0700952 NULL, "opts", "Instruction Tracing options\n"
953 ITRACE_HELP,
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300954 itrace_parse_synth_opts),
Adrian Hunterf56fb982015-09-25 16:15:55 +0300955 OPT_BOOLEAN(0, "strip", &inject.strip,
956 "strip non-synthesized events (use with --itrace)"),
Adrian Hunter83d7f5f2021-04-30 10:03:02 +0300957 OPT_CALLBACK_OPTARG(0, "vm-time-correlation", &inject, NULL, "opts",
958 "correlate time between VM guests and the host",
959 parse_vm_time_correlation),
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300960 OPT_END()
961 };
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300962 const char * const inject_usage[] = {
963 "perf inject [<options>]",
964 NULL
965 };
Jiri Olsae12b2022016-03-10 17:41:13 +0100966#ifndef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +0100967 set_option_nobuild(options, 'j', "jit", "NO_LIBELF=1", true);
968#endif
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300969 argc = parse_options(argc, argv, options, inject_usage, 0);
Tom Zanussi454c4072010-05-01 01:41:20 -0500970
971 /*
972 * Any (unrecognized) arguments left?
973 */
974 if (argc)
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300975 usage_with_options(inject_usage, options);
Tom Zanussi454c4072010-05-01 01:41:20 -0500976
Adrian Hunterf56fb982015-09-25 16:15:55 +0300977 if (inject.strip && !inject.itrace_synth_opts.set) {
978 pr_err("--strip option requires --itrace option\n");
979 return -1;
980 }
981
James Clarkb3a018f2021-10-18 14:48:43 +0100982 if (symbol__validate_sym_arguments())
983 return -1;
984
Adrian Hunter2a525f62021-04-30 10:03:01 +0300985 if (inject.in_place_update) {
986 if (!strcmp(inject.input_name, "-")) {
987 pr_err("Input file name required for in-place updating\n");
988 return -1;
989 }
990 if (strcmp(inject.output.path, "-")) {
991 pr_err("Output file name must not be specified for in-place updating\n");
992 return -1;
993 }
994 if (!data.force && !inject.in_place_update_dry_run) {
995 pr_err("The input file would be updated in place, "
996 "the --force option is required.\n");
997 return -1;
998 }
999 if (!inject.in_place_update_dry_run)
1000 data.in_place_update = true;
1001 } else if (perf_data__open(&inject.output)) {
Jiri Olsa34069122013-10-29 19:04:57 +01001002 perror("failed to create output file");
1003 return -1;
Andrew Vagine558a5b2012-08-07 16:56:02 +04001004 }
1005
Jiri Olsa2d4f2792019-02-21 10:41:30 +01001006 data.path = inject.input_name;
Namhyung Kimc3a057d2021-07-19 15:31:52 -07001007 if (!strcmp(inject.input_name, "-") || inject.output.is_pipe) {
Namhyung Kimfea20d62021-07-19 15:31:51 -07001008 inject.is_pipe = true;
Namhyung Kimc3a057d2021-07-19 15:31:52 -07001009 /*
1010 * Do not repipe header when input is a regular file
1011 * since either it can rewrite the header at the end
1012 * or write a new pipe header.
1013 */
1014 if (strcmp(inject.input_name, "-"))
1015 repipe = false;
1016 }
Namhyung Kimfea20d62021-07-19 15:31:51 -07001017
Namhyung Kimc3a057d2021-07-19 15:31:52 -07001018 inject.session = __perf_session__new(&data, repipe,
Adrian Hunterc271a552021-12-13 10:48:29 +02001019 output_fd(&inject),
Namhyung Kimfea20d62021-07-19 15:31:51 -07001020 &inject.tool);
Riccardo Mancini02e62462021-07-15 18:07:15 +02001021 if (IS_ERR(inject.session)) {
1022 ret = PTR_ERR(inject.session);
1023 goto out_close_output;
1024 }
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +09001025
Alexey Budankov371a3372019-03-18 20:45:44 +03001026 if (zstd_init(&(inject.session->zstd_data), 0) < 0)
1027 pr_warning("Decompression initialization failed.\n");
1028
Namhyung Kimc3a057d2021-07-19 15:31:52 -07001029 if (!data.is_pipe && inject.output.is_pipe) {
1030 ret = perf_header__write_pipe(perf_data__fd(&inject.output));
1031 if (ret < 0) {
1032 pr_err("Couldn't write a new pipe header.\n");
1033 goto out_delete;
1034 }
1035
1036 ret = perf_event__synthesize_for_pipe(&inject.tool,
1037 inject.session,
1038 &inject.output,
1039 perf_event__repipe);
1040 if (ret < 0)
1041 goto out_delete;
1042 }
1043
Namhyung Kim27c9c342020-10-12 16:02:13 +09001044 if (inject.build_ids && !inject.build_id_all) {
Arnaldo Carvalho de Melo921f3fa2016-01-22 18:41:00 -03001045 /*
1046 * to make sure the mmap records are ordered correctly
1047 * and so that the correct especially due to jitted code
1048 * mmaps. We cannot generate the buildid hit list and
1049 * inject the jit mmaps at the same time for now.
1050 */
1051 inject.tool.ordered_events = true;
1052 inject.tool.ordering_requires_timestamps = true;
1053 }
Namhyung Kim27c9c342020-10-12 16:02:13 +09001054
1055 if (inject.sched_stat) {
1056 inject.tool.ordered_events = true;
1057 }
1058
Jiri Olsae12b2022016-03-10 17:41:13 +01001059#ifdef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +01001060 if (inject.jit_mode) {
Stephane Eranian9b07e272015-11-30 10:02:21 +01001061 inject.tool.mmap2 = perf_event__jit_repipe_mmap2;
1062 inject.tool.mmap = perf_event__jit_repipe_mmap;
1063 inject.tool.ordered_events = true;
1064 inject.tool.ordering_requires_timestamps = true;
1065 /*
1066 * JIT MMAP injection injects all MMAP events in one go, so it
1067 * does not obey finished_round semantics.
1068 */
1069 inject.tool.finished_round = perf_event__drop_oe;
1070 }
1071#endif
Taeung Song9fedfb02015-06-30 17:15:20 +09001072 ret = symbol__init(&inject.session->header.env);
1073 if (ret < 0)
1074 goto out_delete;
Tom Zanussi454c4072010-05-01 01:41:20 -05001075
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +09001076 ret = __cmd_inject(&inject);
1077
Taeung Song9fedfb02015-06-30 17:15:20 +09001078out_delete:
Alexey Budankov371a3372019-03-18 20:45:44 +03001079 zstd_fini(&(inject.session->zstd_data));
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +09001080 perf_session__delete(inject.session);
Riccardo Mancini02e62462021-07-15 18:07:15 +02001081out_close_output:
Adrian Hunter0c8e32f2021-12-13 10:48:28 +02001082 if (!inject.in_place_update)
1083 perf_data__close(&inject.output);
Adrian Hunter83d7f5f2021-04-30 10:03:02 +03001084 free(inject.itrace_synth_opts.vm_tm_corr_args);
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +09001085 return ret;
Tom Zanussi454c4072010-05-01 01:41:20 -05001086}