blob: b38445f08c2fb0b06e7b6236f3096ff91892c156 [file] [log] [blame]
Tom Zanussi454c4072010-05-01 01:41:20 -05001/*
2 * builtin-inject.c
3 *
4 * Builtin inject command: Examine the live mode (stdin) event stream
5 * and repipe it to stdout while optionally injecting additional
6 * events into it.
7 */
8#include "builtin.h"
9
10#include "perf.h"
Andrew Vagin26a031e2012-08-07 16:56:04 +040011#include "util/color.h"
12#include "util/evlist.h"
13#include "util/evsel.h"
Tom Zanussi454c4072010-05-01 01:41:20 -050014#include "util/session.h"
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020015#include "util/tool.h"
Tom Zanussi454c4072010-05-01 01:41:20 -050016#include "util/debug.h"
Andrew Vagin54a3cf52012-08-07 16:56:05 +040017#include "util/build-id.h"
Jiri Olsaf5fc1412013-10-15 16:27:32 +020018#include "util/data.h"
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +030019#include "util/auxtrace.h"
Stephane Eranian9b07e272015-11-30 10:02:21 +010020#include "util/jit.h"
Tom Zanussi454c4072010-05-01 01:41:20 -050021
Josh Poimboeuf4b6ab942015-12-15 09:39:39 -060022#include <subcmd/parse-options.h>
Tom Zanussi454c4072010-05-01 01:41:20 -050023
Andrew Vagin26a031e2012-08-07 16:56:04 +040024#include <linux/list.h>
25
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -030026struct perf_inject {
Jiri Olsa34069122013-10-29 19:04:57 +010027 struct perf_tool tool;
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +090028 struct perf_session *session;
Jiri Olsa34069122013-10-29 19:04:57 +010029 bool build_ids;
30 bool sched_stat;
Adrian Huntercd10b282015-04-30 17:37:26 +030031 bool have_auxtrace;
Adrian Hunterf56fb982015-09-25 16:15:55 +030032 bool strip;
Stephane Eranian9b07e272015-11-30 10:02:21 +010033 bool jit_mode;
Jiri Olsa34069122013-10-29 19:04:57 +010034 const char *input_name;
35 struct perf_data_file output;
36 u64 bytes_written;
Adrian Hunter73117302015-09-25 16:15:54 +030037 u64 aux_id;
Jiri Olsa34069122013-10-29 19:04:57 +010038 struct list_head samples;
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +030039 struct itrace_synth_opts itrace_synth_opts;
Andrew Vagin26a031e2012-08-07 16:56:04 +040040};
41
42struct event_entry {
43 struct list_head node;
44 u32 tid;
45 union perf_event event[0];
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -030046};
Tom Zanussi454c4072010-05-01 01:41:20 -050047
Adrian Huntercd17a9b2015-04-21 12:21:54 +030048static int output_bytes(struct perf_inject *inject, void *buf, size_t sz)
Tom Zanussi454c4072010-05-01 01:41:20 -050049{
Jiri Olsa34069122013-10-29 19:04:57 +010050 ssize_t size;
Tom Zanussi454c4072010-05-01 01:41:20 -050051
Adrian Huntercd17a9b2015-04-21 12:21:54 +030052 size = perf_data_file__write(&inject->output, buf, sz);
Jiri Olsa34069122013-10-29 19:04:57 +010053 if (size < 0)
54 return -errno;
Tom Zanussi454c4072010-05-01 01:41:20 -050055
Jiri Olsa34069122013-10-29 19:04:57 +010056 inject->bytes_written += size;
Tom Zanussi454c4072010-05-01 01:41:20 -050057 return 0;
58}
59
Adrian Huntercd17a9b2015-04-21 12:21:54 +030060static int perf_event__repipe_synth(struct perf_tool *tool,
61 union perf_event *event)
62{
63 struct perf_inject *inject = container_of(tool, struct perf_inject,
64 tool);
65
66 return output_bytes(inject, event, event->header.size);
67}
68
Arnaldo Carvalho de Melod704ebd2015-03-03 12:37:54 -030069static int perf_event__repipe_oe_synth(struct perf_tool *tool,
70 union perf_event *event,
71 struct ordered_events *oe __maybe_unused)
72{
73 return perf_event__repipe_synth(tool, event);
74}
75
Stephane Eranian9b07e272015-11-30 10:02:21 +010076#ifdef HAVE_LIBELF_SUPPORT
77static int perf_event__drop_oe(struct perf_tool *tool __maybe_unused,
78 union perf_event *event __maybe_unused,
79 struct ordered_events *oe __maybe_unused)
80{
81 return 0;
82}
83#endif
84
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020085static int perf_event__repipe_op2_synth(struct perf_tool *tool,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -020086 union perf_event *event,
Irina Tirdea1d037ca2012-09-11 01:15:03 +030087 struct perf_session *session
88 __maybe_unused)
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -020089{
Adrian Hunter63c2c9f2013-07-04 16:20:20 +030090 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -020091}
92
Adrian Hunter47c3d102013-07-04 16:20:21 +030093static int perf_event__repipe_attr(struct perf_tool *tool,
94 union perf_event *event,
95 struct perf_evlist **pevlist)
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -020096{
Adrian Hunter89c97d92013-10-22 10:34:09 +030097 struct perf_inject *inject = container_of(tool, struct perf_inject,
98 tool);
Stephane Eranian1a1ed1b2012-05-15 13:28:11 +020099 int ret;
Adrian Hunter47c3d102013-07-04 16:20:21 +0300100
101 ret = perf_event__process_attr(tool, event, pevlist);
Stephane Eranian1a1ed1b2012-05-15 13:28:11 +0200102 if (ret)
103 return ret;
104
Jiri Olsaa261e4a2014-06-05 18:51:44 +0200105 if (!inject->output.is_pipe)
Adrian Hunter89c97d92013-10-22 10:34:09 +0300106 return 0;
107
Adrian Hunter47c3d102013-07-04 16:20:21 +0300108 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -0200109}
110
Adrian Huntere31f0d02015-04-30 17:37:27 +0300111#ifdef HAVE_AUXTRACE_SUPPORT
112
113static int copy_bytes(struct perf_inject *inject, int fd, off_t size)
114{
115 char buf[4096];
116 ssize_t ssz;
117 int ret;
118
119 while (size > 0) {
120 ssz = read(fd, buf, min(size, (off_t)sizeof(buf)));
121 if (ssz < 0)
122 return -errno;
123 ret = output_bytes(inject, buf, ssz);
124 if (ret)
125 return ret;
126 size -= ssz;
127 }
128
129 return 0;
130}
131
Adrian Huntercd17a9b2015-04-21 12:21:54 +0300132static s64 perf_event__repipe_auxtrace(struct perf_tool *tool,
133 union perf_event *event,
134 struct perf_session *session
135 __maybe_unused)
136{
137 struct perf_inject *inject = container_of(tool, struct perf_inject,
138 tool);
139 int ret;
140
Adrian Huntercd10b282015-04-30 17:37:26 +0300141 inject->have_auxtrace = true;
142
Adrian Hunter99fa2982015-04-30 17:37:25 +0300143 if (!inject->output.is_pipe) {
144 off_t offset;
145
146 offset = lseek(inject->output.fd, 0, SEEK_CUR);
147 if (offset == -1)
148 return -errno;
149 ret = auxtrace_index__auxtrace_event(&session->auxtrace_index,
150 event, offset);
151 if (ret < 0)
152 return ret;
153 }
154
Adrian Huntercd17a9b2015-04-21 12:21:54 +0300155 if (perf_data_file__is_pipe(session->file) || !session->one_mmap) {
156 ret = output_bytes(inject, event, event->header.size);
157 if (ret < 0)
158 return ret;
159 ret = copy_bytes(inject, perf_data_file__fd(session->file),
160 event->auxtrace.size);
161 } else {
162 ret = output_bytes(inject, event,
163 event->header.size + event->auxtrace.size);
164 }
165 if (ret < 0)
166 return ret;
167
168 return event->auxtrace.size;
169}
170
Adrian Huntere31f0d02015-04-30 17:37:27 +0300171#else
172
173static s64
174perf_event__repipe_auxtrace(struct perf_tool *tool __maybe_unused,
175 union perf_event *event __maybe_unused,
176 struct perf_session *session __maybe_unused)
177{
178 pr_err("AUX area tracing not supported\n");
179 return -EINVAL;
180}
181
182#endif
183
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200184static int perf_event__repipe(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200185 union perf_event *event,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300186 struct perf_sample *sample __maybe_unused,
Adrian Hunter63c2c9f2013-07-04 16:20:20 +0300187 struct machine *machine __maybe_unused)
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -0200188{
Adrian Hunter63c2c9f2013-07-04 16:20:20 +0300189 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -0200190}
191
Adrian Hunterf56fb982015-09-25 16:15:55 +0300192static int perf_event__drop(struct perf_tool *tool __maybe_unused,
193 union perf_event *event __maybe_unused,
194 struct perf_sample *sample __maybe_unused,
195 struct machine *machine __maybe_unused)
196{
197 return 0;
198}
199
Adrian Hunter73117302015-09-25 16:15:54 +0300200static int perf_event__drop_aux(struct perf_tool *tool,
201 union perf_event *event __maybe_unused,
202 struct perf_sample *sample,
203 struct machine *machine __maybe_unused)
204{
205 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
206
207 if (!inject->aux_id)
208 inject->aux_id = sample->id;
209
210 return 0;
211}
212
Andrew Vagin26a031e2012-08-07 16:56:04 +0400213typedef int (*inject_handler)(struct perf_tool *tool,
214 union perf_event *event,
215 struct perf_sample *sample,
216 struct perf_evsel *evsel,
217 struct machine *machine);
218
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200219static int perf_event__repipe_sample(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200220 union perf_event *event,
Andrew Vagin26a031e2012-08-07 16:56:04 +0400221 struct perf_sample *sample,
222 struct perf_evsel *evsel,
223 struct machine *machine)
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300224{
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300225 if (evsel->handler) {
226 inject_handler f = evsel->handler;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400227 return f(tool, event, sample, evsel, machine);
228 }
229
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400230 build_id__mark_dso_hit(tool, event, sample, evsel, machine);
231
Adrian Hunter63c2c9f2013-07-04 16:20:20 +0300232 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300233}
234
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200235static int perf_event__repipe_mmap(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200236 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200237 struct perf_sample *sample,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200238 struct machine *machine)
Tom Zanussi454c4072010-05-01 01:41:20 -0500239{
240 int err;
241
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200242 err = perf_event__process_mmap(tool, event, sample, machine);
243 perf_event__repipe(tool, event, sample, machine);
Tom Zanussi454c4072010-05-01 01:41:20 -0500244
245 return err;
246}
247
Stephane Eranian9b07e272015-11-30 10:02:21 +0100248#ifdef HAVE_LIBELF_SUPPORT
249static int perf_event__jit_repipe_mmap(struct perf_tool *tool,
250 union perf_event *event,
251 struct perf_sample *sample,
252 struct machine *machine)
253{
254 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
255 u64 n = 0;
256
257 /*
258 * if jit marker, then inject jit mmaps and generate ELF images
259 */
260 if (!jit_process(inject->session, &inject->output, machine,
261 event->mmap.filename, sample->pid, &n)) {
262 inject->bytes_written += n;
263 return 0;
264 }
265 return perf_event__repipe_mmap(tool, event, sample, machine);
266}
267#endif
268
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200269static int perf_event__repipe_mmap2(struct perf_tool *tool,
270 union perf_event *event,
271 struct perf_sample *sample,
272 struct machine *machine)
273{
274 int err;
275
276 err = perf_event__process_mmap2(tool, event, sample, machine);
277 perf_event__repipe(tool, event, sample, machine);
278
279 return err;
280}
281
Stephane Eranian9b07e272015-11-30 10:02:21 +0100282#ifdef HAVE_LIBELF_SUPPORT
283static int perf_event__jit_repipe_mmap2(struct perf_tool *tool,
284 union perf_event *event,
285 struct perf_sample *sample,
286 struct machine *machine)
287{
288 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
289 u64 n = 0;
290
291 /*
292 * if jit marker, then inject jit mmaps and generate ELF images
293 */
294 if (!jit_process(inject->session, &inject->output, machine,
295 event->mmap2.filename, sample->pid, &n)) {
296 inject->bytes_written += n;
297 return 0;
298 }
299 return perf_event__repipe_mmap2(tool, event, sample, machine);
300}
301#endif
302
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300303static int perf_event__repipe_fork(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200304 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200305 struct perf_sample *sample,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200306 struct machine *machine)
Tom Zanussi454c4072010-05-01 01:41:20 -0500307{
308 int err;
309
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300310 err = perf_event__process_fork(tool, event, sample, machine);
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200311 perf_event__repipe(tool, event, sample, machine);
Tom Zanussi454c4072010-05-01 01:41:20 -0500312
313 return err;
314}
315
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300316static int perf_event__repipe_comm(struct perf_tool *tool,
317 union perf_event *event,
318 struct perf_sample *sample,
319 struct machine *machine)
320{
321 int err;
322
323 err = perf_event__process_comm(tool, event, sample, machine);
324 perf_event__repipe(tool, event, sample, machine);
325
326 return err;
327}
328
329static int perf_event__repipe_exit(struct perf_tool *tool,
330 union perf_event *event,
331 struct perf_sample *sample,
332 struct machine *machine)
333{
334 int err;
335
336 err = perf_event__process_exit(tool, event, sample, machine);
337 perf_event__repipe(tool, event, sample, machine);
338
339 return err;
340}
341
Adrian Hunter47c3d102013-07-04 16:20:21 +0300342static int perf_event__repipe_tracing_data(struct perf_tool *tool,
343 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200344 struct perf_session *session)
Tom Zanussi454c4072010-05-01 01:41:20 -0500345{
346 int err;
347
Adrian Hunter47c3d102013-07-04 16:20:21 +0300348 perf_event__repipe_synth(tool, event);
349 err = perf_event__process_tracing_data(tool, event, session);
Tom Zanussi454c4072010-05-01 01:41:20 -0500350
351 return err;
352}
353
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300354static int perf_event__repipe_id_index(struct perf_tool *tool,
355 union perf_event *event,
356 struct perf_session *session)
357{
358 int err;
359
360 perf_event__repipe_synth(tool, event);
361 err = perf_event__process_id_index(tool, event, session);
362
363 return err;
364}
365
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300366static int dso__read_build_id(struct dso *dso)
Tom Zanussi454c4072010-05-01 01:41:20 -0500367{
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300368 if (dso->has_build_id)
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300369 return 0;
Tom Zanussi454c4072010-05-01 01:41:20 -0500370
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300371 if (filename__read_build_id(dso->long_name, dso->build_id,
372 sizeof(dso->build_id)) > 0) {
373 dso->has_build_id = true;
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300374 return 0;
Tom Zanussi454c4072010-05-01 01:41:20 -0500375 }
376
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300377 return -1;
378}
Tom Zanussi454c4072010-05-01 01:41:20 -0500379
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300380static int dso__inject_build_id(struct dso *dso, struct perf_tool *tool,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200381 struct machine *machine)
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300382{
383 u16 misc = PERF_RECORD_MISC_USER;
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300384 int err;
Tom Zanussi454c4072010-05-01 01:41:20 -0500385
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300386 if (dso__read_build_id(dso) < 0) {
387 pr_debug("no build_id found for %s\n", dso->long_name);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300388 return -1;
389 }
Tom Zanussi454c4072010-05-01 01:41:20 -0500390
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300391 if (dso->kernel)
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300392 misc = PERF_RECORD_MISC_KERNEL;
393
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300394 err = perf_event__synthesize_build_id(tool, dso, misc, perf_event__repipe,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200395 machine);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300396 if (err) {
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300397 pr_err("Can't synthesize build_id event for %s\n", dso->long_name);
Tom Zanussi454c4072010-05-01 01:41:20 -0500398 return -1;
399 }
400
401 return 0;
402}
403
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200404static int perf_event__inject_buildid(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200405 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200406 struct perf_sample *sample,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300407 struct perf_evsel *evsel __maybe_unused,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200408 struct machine *machine)
Tom Zanussi454c4072010-05-01 01:41:20 -0500409{
410 struct addr_location al;
411 struct thread *thread;
412 u8 cpumode;
Tom Zanussi454c4072010-05-01 01:41:20 -0500413
414 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
415
Namhyung Kim13ce34d2014-05-12 09:56:42 +0900416 thread = machine__findnew_thread(machine, sample->pid, sample->tid);
Tom Zanussi454c4072010-05-01 01:41:20 -0500417 if (thread == NULL) {
418 pr_err("problem processing %d event, skipping it.\n",
419 event->header.type);
Tom Zanussi454c4072010-05-01 01:41:20 -0500420 goto repipe;
421 }
422
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -0300423 thread__find_addr_map(thread, cpumode, MAP__FUNCTION, sample->ip, &al);
Tom Zanussi454c4072010-05-01 01:41:20 -0500424
425 if (al.map != NULL) {
426 if (!al.map->dso->hit) {
427 al.map->dso->hit = 1;
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300428 if (map__load(al.map, NULL) >= 0) {
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200429 dso__inject_build_id(al.map->dso, tool, machine);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300430 /*
431 * If this fails, too bad, let the other side
432 * account this as unresolved.
433 */
Namhyung Kim393be2e2012-08-06 13:41:21 +0900434 } else {
Ingo Molnar89fe8082013-09-30 12:07:11 +0200435#ifdef HAVE_LIBELF_SUPPORT
Tom Zanussi454c4072010-05-01 01:41:20 -0500436 pr_warning("no symbols found in %s, maybe "
437 "install a debug package?\n",
438 al.map->dso->long_name);
Namhyung Kim393be2e2012-08-06 13:41:21 +0900439#endif
440 }
Tom Zanussi454c4072010-05-01 01:41:20 -0500441 }
442 }
443
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300444 thread__put(thread);
Tom Zanussi454c4072010-05-01 01:41:20 -0500445repipe:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200446 perf_event__repipe(tool, event, sample, machine);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300447 return 0;
Tom Zanussi454c4072010-05-01 01:41:20 -0500448}
449
Andrew Vagin26a031e2012-08-07 16:56:04 +0400450static int perf_inject__sched_process_exit(struct perf_tool *tool,
451 union perf_event *event __maybe_unused,
452 struct perf_sample *sample,
453 struct perf_evsel *evsel __maybe_unused,
454 struct machine *machine __maybe_unused)
455{
456 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
457 struct event_entry *ent;
458
459 list_for_each_entry(ent, &inject->samples, node) {
460 if (sample->tid == ent->tid) {
461 list_del_init(&ent->node);
462 free(ent);
463 break;
464 }
465 }
466
467 return 0;
468}
469
470static int perf_inject__sched_switch(struct perf_tool *tool,
471 union perf_event *event,
472 struct perf_sample *sample,
473 struct perf_evsel *evsel,
474 struct machine *machine)
475{
476 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
477 struct event_entry *ent;
478
479 perf_inject__sched_process_exit(tool, event, sample, evsel, machine);
480
481 ent = malloc(event->header.size + sizeof(struct event_entry));
482 if (ent == NULL) {
483 color_fprintf(stderr, PERF_COLOR_RED,
484 "Not enough memory to process sched switch event!");
485 return -1;
486 }
487
488 ent->tid = sample->tid;
489 memcpy(&ent->event, event, event->header.size);
490 list_add(&ent->node, &inject->samples);
491 return 0;
492}
493
494static int perf_inject__sched_stat(struct perf_tool *tool,
495 union perf_event *event __maybe_unused,
496 struct perf_sample *sample,
497 struct perf_evsel *evsel,
498 struct machine *machine)
499{
500 struct event_entry *ent;
501 union perf_event *event_sw;
502 struct perf_sample sample_sw;
503 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
504 u32 pid = perf_evsel__intval(evsel, sample, "pid");
505
506 list_for_each_entry(ent, &inject->samples, node) {
507 if (pid == ent->tid)
508 goto found;
509 }
510
511 return 0;
512found:
513 event_sw = &ent->event[0];
514 perf_evsel__parse_sample(evsel, event_sw, &sample_sw);
515
516 sample_sw.period = sample->period;
517 sample_sw.time = sample->time;
518 perf_event__synthesize_sample(event_sw, evsel->attr.sample_type,
Adrian Hunterd03f2172013-08-27 11:23:11 +0300519 evsel->attr.read_format, &sample_sw,
520 false);
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400521 build_id__mark_dso_hit(tool, event_sw, &sample_sw, evsel, machine);
Andrew Vagin26a031e2012-08-07 16:56:04 +0400522 return perf_event__repipe(tool, event_sw, &sample_sw, machine);
523}
524
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300525static void sig_handler(int sig __maybe_unused)
Tom Zanussi454c4072010-05-01 01:41:20 -0500526{
527 session_done = 1;
528}
529
Andrew Vagin26a031e2012-08-07 16:56:04 +0400530static int perf_evsel__check_stype(struct perf_evsel *evsel,
531 u64 sample_type, const char *sample_msg)
532{
533 struct perf_event_attr *attr = &evsel->attr;
534 const char *name = perf_evsel__name(evsel);
535
536 if (!(attr->sample_type & sample_type)) {
537 pr_err("Samples for %s event do not have %s attribute set.",
538 name, sample_msg);
539 return -EINVAL;
540 }
541
542 return 0;
543}
544
Adrian Hunterf56fb982015-09-25 16:15:55 +0300545static int drop_sample(struct perf_tool *tool __maybe_unused,
546 union perf_event *event __maybe_unused,
547 struct perf_sample *sample __maybe_unused,
548 struct perf_evsel *evsel __maybe_unused,
549 struct machine *machine __maybe_unused)
550{
551 return 0;
552}
553
554static void strip_init(struct perf_inject *inject)
555{
556 struct perf_evlist *evlist = inject->session->evlist;
557 struct perf_evsel *evsel;
558
559 inject->tool.context_switch = perf_event__drop;
560
561 evlist__for_each(evlist, evsel)
562 evsel->handler = drop_sample;
563}
564
565static bool has_tracking(struct perf_evsel *evsel)
566{
567 return evsel->attr.mmap || evsel->attr.mmap2 || evsel->attr.comm ||
568 evsel->attr.task;
569}
570
571#define COMPAT_MASK (PERF_SAMPLE_ID | PERF_SAMPLE_TID | PERF_SAMPLE_TIME | \
572 PERF_SAMPLE_ID | PERF_SAMPLE_CPU | PERF_SAMPLE_IDENTIFIER)
573
574/*
575 * In order that the perf.data file is parsable, tracking events like MMAP need
576 * their selected event to exist, except if there is only 1 selected event left
577 * and it has a compatible sample type.
578 */
579static bool ok_to_remove(struct perf_evlist *evlist,
580 struct perf_evsel *evsel_to_remove)
581{
582 struct perf_evsel *evsel;
583 int cnt = 0;
584 bool ok = false;
585
586 if (!has_tracking(evsel_to_remove))
587 return true;
588
589 evlist__for_each(evlist, evsel) {
590 if (evsel->handler != drop_sample) {
591 cnt += 1;
592 if ((evsel->attr.sample_type & COMPAT_MASK) ==
593 (evsel_to_remove->attr.sample_type & COMPAT_MASK))
594 ok = true;
595 }
596 }
597
598 return ok && cnt == 1;
599}
600
601static void strip_fini(struct perf_inject *inject)
602{
603 struct perf_evlist *evlist = inject->session->evlist;
604 struct perf_evsel *evsel, *tmp;
605
606 /* Remove non-synthesized evsels if possible */
607 evlist__for_each_safe(evlist, tmp, evsel) {
608 if (evsel->handler == drop_sample &&
609 ok_to_remove(evlist, evsel)) {
610 pr_debug("Deleting %s\n", perf_evsel__name(evsel));
611 perf_evlist__remove(evlist, evsel);
612 perf_evsel__delete(evsel);
613 }
614 }
615}
616
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300617static int __cmd_inject(struct perf_inject *inject)
Tom Zanussi454c4072010-05-01 01:41:20 -0500618{
Tom Zanussi454c4072010-05-01 01:41:20 -0500619 int ret = -EINVAL;
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900620 struct perf_session *session = inject->session;
Jiri Olsa34069122013-10-29 19:04:57 +0100621 struct perf_data_file *file_out = &inject->output;
Namhyung Kim42aa2762015-01-29 17:06:48 +0900622 int fd = perf_data_file__fd(file_out);
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300623 u64 output_data_offset;
Tom Zanussi454c4072010-05-01 01:41:20 -0500624
625 signal(SIGINT, sig_handler);
626
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300627 if (inject->build_ids || inject->sched_stat ||
628 inject->itrace_synth_opts.set) {
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300629 inject->tool.mmap = perf_event__repipe_mmap;
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200630 inject->tool.mmap2 = perf_event__repipe_mmap2;
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300631 inject->tool.fork = perf_event__repipe_fork;
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300632 inject->tool.tracing_data = perf_event__repipe_tracing_data;
Tom Zanussi454c4072010-05-01 01:41:20 -0500633 }
634
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300635 output_data_offset = session->header.data_offset;
636
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400637 if (inject->build_ids) {
638 inject->tool.sample = perf_event__inject_buildid;
639 } else if (inject->sched_stat) {
Andrew Vagin26a031e2012-08-07 16:56:04 +0400640 struct perf_evsel *evsel;
641
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300642 evlist__for_each(session->evlist, evsel) {
Andrew Vagin26a031e2012-08-07 16:56:04 +0400643 const char *name = perf_evsel__name(evsel);
644
645 if (!strcmp(name, "sched:sched_switch")) {
646 if (perf_evsel__check_stype(evsel, PERF_SAMPLE_TID, "TID"))
647 return -EINVAL;
648
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300649 evsel->handler = perf_inject__sched_switch;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400650 } else if (!strcmp(name, "sched:sched_process_exit"))
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300651 evsel->handler = perf_inject__sched_process_exit;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400652 else if (!strncmp(name, "sched:sched_stat_", 17))
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300653 evsel->handler = perf_inject__sched_stat;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400654 }
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300655 } else if (inject->itrace_synth_opts.set) {
656 session->itrace_synth_opts = &inject->itrace_synth_opts;
657 inject->itrace_synth_opts.inject = true;
658 inject->tool.comm = perf_event__repipe_comm;
659 inject->tool.exit = perf_event__repipe_exit;
660 inject->tool.id_index = perf_event__repipe_id_index;
661 inject->tool.auxtrace_info = perf_event__process_auxtrace_info;
662 inject->tool.auxtrace = perf_event__process_auxtrace;
Adrian Hunter73117302015-09-25 16:15:54 +0300663 inject->tool.aux = perf_event__drop_aux;
664 inject->tool.itrace_start = perf_event__drop_aux,
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300665 inject->tool.ordered_events = true;
666 inject->tool.ordering_requires_timestamps = true;
667 /* Allow space in the header for new attributes */
668 output_data_offset = 4096;
Adrian Hunterf56fb982015-09-25 16:15:55 +0300669 if (inject->strip)
670 strip_init(inject);
Andrew Vagin26a031e2012-08-07 16:56:04 +0400671 }
672
Adrian Hunter99fa2982015-04-30 17:37:25 +0300673 if (!inject->itrace_synth_opts.set)
674 auxtrace_index__free(&session->auxtrace_index);
675
Jiri Olsa34069122013-10-29 19:04:57 +0100676 if (!file_out->is_pipe)
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300677 lseek(fd, output_data_offset, SEEK_SET);
Andrew Vagine558a5b2012-08-07 16:56:02 +0400678
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -0300679 ret = perf_session__process_events(session);
Tom Zanussi454c4072010-05-01 01:41:20 -0500680
Jiri Olsa34069122013-10-29 19:04:57 +0100681 if (!file_out->is_pipe) {
Adrian Huntercd10b282015-04-30 17:37:26 +0300682 if (inject->build_ids) {
Adrian Huntere38b43c2014-07-14 13:02:34 +0300683 perf_header__set_feat(&session->header,
684 HEADER_BUILD_ID);
Adrian Huntercd10b282015-04-30 17:37:26 +0300685 if (inject->have_auxtrace)
686 dsos__hit_all(session);
687 }
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300688 /*
689 * The AUX areas have been removed and replaced with
Adrian Hunter73117302015-09-25 16:15:54 +0300690 * synthesized hardware events, so clear the feature flag and
691 * remove the evsel.
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300692 */
Adrian Hunter051a01b2015-09-25 16:15:43 +0300693 if (inject->itrace_synth_opts.set) {
Adrian Hunter73117302015-09-25 16:15:54 +0300694 struct perf_evsel *evsel;
695
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300696 perf_header__clear_feat(&session->header,
697 HEADER_AUXTRACE);
Adrian Hunter051a01b2015-09-25 16:15:43 +0300698 if (inject->itrace_synth_opts.last_branch)
699 perf_header__set_feat(&session->header,
700 HEADER_BRANCH_STACK);
Adrian Hunter73117302015-09-25 16:15:54 +0300701 evsel = perf_evlist__id2evsel_strict(session->evlist,
702 inject->aux_id);
703 if (evsel) {
704 pr_debug("Deleting %s\n",
705 perf_evsel__name(evsel));
706 perf_evlist__remove(session->evlist, evsel);
707 perf_evsel__delete(evsel);
708 }
Adrian Hunterf56fb982015-09-25 16:15:55 +0300709 if (inject->strip)
710 strip_fini(inject);
Adrian Hunter051a01b2015-09-25 16:15:43 +0300711 }
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300712 session->header.data_offset = output_data_offset;
Andrew Vagine558a5b2012-08-07 16:56:02 +0400713 session->header.data_size = inject->bytes_written;
Namhyung Kim42aa2762015-01-29 17:06:48 +0900714 perf_session__write_header(session, session->evlist, fd, true);
Andrew Vagine558a5b2012-08-07 16:56:02 +0400715 }
716
Tom Zanussi454c4072010-05-01 01:41:20 -0500717 return ret;
718}
719
Stephane Eranian9b07e272015-11-30 10:02:21 +0100720#ifdef HAVE_LIBELF_SUPPORT
721static int
722jit_validate_events(struct perf_session *session)
723{
724 struct perf_evsel *evsel;
725
726 /*
727 * check that all events use CLOCK_MONOTONIC
728 */
729 evlist__for_each(session->evlist, evsel) {
730 if (evsel->attr.use_clockid == 0 || evsel->attr.clockid != CLOCK_MONOTONIC)
731 return -1;
732 }
733 return 0;
734}
735#endif
736
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300737int cmd_inject(int argc, const char **argv, const char *prefix __maybe_unused)
Tom Zanussi454c4072010-05-01 01:41:20 -0500738{
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300739 struct perf_inject inject = {
740 .tool = {
741 .sample = perf_event__repipe_sample,
742 .mmap = perf_event__repipe,
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200743 .mmap2 = perf_event__repipe,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300744 .comm = perf_event__repipe,
745 .fork = perf_event__repipe,
746 .exit = perf_event__repipe,
747 .lost = perf_event__repipe,
Adrian Hunterd8145b32015-11-13 11:48:32 +0200748 .lost_samples = perf_event__repipe,
Adrian Hunter4a96f7a2015-04-30 17:37:29 +0300749 .aux = perf_event__repipe,
Adrian Hunter0ad21f62015-04-30 17:37:30 +0300750 .itrace_start = perf_event__repipe,
Adrian Hunter02860392015-07-21 12:44:03 +0300751 .context_switch = perf_event__repipe,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300752 .read = perf_event__repipe_sample,
753 .throttle = perf_event__repipe,
754 .unthrottle = perf_event__repipe,
755 .attr = perf_event__repipe_attr,
Adrian Hunter47c3d102013-07-04 16:20:21 +0300756 .tracing_data = perf_event__repipe_op2_synth,
Adrian Huntercd17a9b2015-04-21 12:21:54 +0300757 .auxtrace_info = perf_event__repipe_op2_synth,
758 .auxtrace = perf_event__repipe_auxtrace,
759 .auxtrace_error = perf_event__repipe_op2_synth,
Arnaldo Carvalho de Melod704ebd2015-03-03 12:37:54 -0300760 .finished_round = perf_event__repipe_oe_synth,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300761 .build_id = perf_event__repipe_op2_synth,
Adrian Hunter3c659ee2014-10-27 15:49:22 +0200762 .id_index = perf_event__repipe_op2_synth,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300763 },
Andrew Vagine558a5b2012-08-07 16:56:02 +0400764 .input_name = "-",
Andrew Vagin26a031e2012-08-07 16:56:04 +0400765 .samples = LIST_HEAD_INIT(inject.samples),
Jiri Olsa34069122013-10-29 19:04:57 +0100766 .output = {
767 .path = "-",
768 .mode = PERF_DATA_MODE_WRITE,
769 },
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300770 };
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900771 struct perf_data_file file = {
772 .mode = PERF_DATA_MODE_READ,
773 };
774 int ret;
775
Stephane Eranian9b07e272015-11-30 10:02:21 +0100776 struct option options[] = {
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300777 OPT_BOOLEAN('b', "build-ids", &inject.build_ids,
778 "Inject build-ids into the output stream"),
Andrew Vagine558a5b2012-08-07 16:56:02 +0400779 OPT_STRING('i', "input", &inject.input_name, "file",
780 "input file name"),
Jiri Olsa34069122013-10-29 19:04:57 +0100781 OPT_STRING('o', "output", &inject.output.path, "file",
Andrew Vagine558a5b2012-08-07 16:56:02 +0400782 "output file name"),
Andrew Vagin26a031e2012-08-07 16:56:04 +0400783 OPT_BOOLEAN('s', "sched-stat", &inject.sched_stat,
784 "Merge sched-stat and sched-switch for getting events "
785 "where and how long tasks slept"),
Stephane Eranian9b07e272015-11-30 10:02:21 +0100786 OPT_BOOLEAN('j', "jit", &inject.jit_mode, "merge jitdump files into perf.data file"),
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300787 OPT_INCR('v', "verbose", &verbose,
788 "be more verbose (show build ids, etc)"),
Adrian Huntera7a2b8b2014-07-22 16:17:38 +0300789 OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name, "file",
790 "kallsyms pathname"),
Yunlong Songccaa4742015-04-02 21:47:11 +0800791 OPT_BOOLEAN('f', "force", &file.force, "don't complain, do it"),
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300792 OPT_CALLBACK_OPTARG(0, "itrace", &inject.itrace_synth_opts,
793 NULL, "opts", "Instruction Tracing options",
794 itrace_parse_synth_opts),
Adrian Hunterf56fb982015-09-25 16:15:55 +0300795 OPT_BOOLEAN(0, "strip", &inject.strip,
796 "strip non-synthesized events (use with --itrace)"),
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300797 OPT_END()
798 };
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300799 const char * const inject_usage[] = {
800 "perf inject [<options>]",
801 NULL
802 };
Stephane Eranian9b07e272015-11-30 10:02:21 +0100803#ifndef HAVE_LIBELF_SUPPORT
804 set_option_nobuild(options, 'j', "jit", "NO_LIBELF=1", true);
805#endif
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300806 argc = parse_options(argc, argv, options, inject_usage, 0);
Tom Zanussi454c4072010-05-01 01:41:20 -0500807
808 /*
809 * Any (unrecognized) arguments left?
810 */
811 if (argc)
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300812 usage_with_options(inject_usage, options);
Tom Zanussi454c4072010-05-01 01:41:20 -0500813
Adrian Hunterf56fb982015-09-25 16:15:55 +0300814 if (inject.strip && !inject.itrace_synth_opts.set) {
815 pr_err("--strip option requires --itrace option\n");
816 return -1;
817 }
818
Jiri Olsa34069122013-10-29 19:04:57 +0100819 if (perf_data_file__open(&inject.output)) {
820 perror("failed to create output file");
821 return -1;
Andrew Vagine558a5b2012-08-07 16:56:02 +0400822 }
823
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -0300824 inject.tool.ordered_events = inject.sched_stat;
825
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900826 file.path = inject.input_name;
827 inject.session = perf_session__new(&file, true, &inject.tool);
828 if (inject.session == NULL)
Taeung Song52e028342014-09-24 10:33:37 +0900829 return -1;
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900830
Arnaldo Carvalho de Melo921f3fa2016-01-22 18:41:00 -0300831 if (inject.build_ids) {
832 /*
833 * to make sure the mmap records are ordered correctly
834 * and so that the correct especially due to jitted code
835 * mmaps. We cannot generate the buildid hit list and
836 * inject the jit mmaps at the same time for now.
837 */
838 inject.tool.ordered_events = true;
839 inject.tool.ordering_requires_timestamps = true;
840 }
Stephane Eranian9b07e272015-11-30 10:02:21 +0100841#ifdef HAVE_LIBELF_SUPPORT
842 if (inject.jit_mode) {
843 /*
844 * validate event is using the correct clockid
845 */
846 if (jit_validate_events(inject.session)) {
847 fprintf(stderr, "error, jitted code must be sampled with perf record -k 1\n");
848 return -1;
849 }
850 inject.tool.mmap2 = perf_event__jit_repipe_mmap2;
851 inject.tool.mmap = perf_event__jit_repipe_mmap;
852 inject.tool.ordered_events = true;
853 inject.tool.ordering_requires_timestamps = true;
854 /*
855 * JIT MMAP injection injects all MMAP events in one go, so it
856 * does not obey finished_round semantics.
857 */
858 inject.tool.finished_round = perf_event__drop_oe;
859 }
860#endif
Taeung Song9fedfb02015-06-30 17:15:20 +0900861 ret = symbol__init(&inject.session->header.env);
862 if (ret < 0)
863 goto out_delete;
Tom Zanussi454c4072010-05-01 01:41:20 -0500864
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900865 ret = __cmd_inject(&inject);
866
Taeung Song9fedfb02015-06-30 17:15:20 +0900867out_delete:
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900868 perf_session__delete(inject.session);
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900869 return ret;
Tom Zanussi454c4072010-05-01 01:41:20 -0500870}