blob: 3e8f730c7dee4060de09751b56f9a7d1a36126df [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"
Tom Zanussi454c4072010-05-01 01:41:20 -050020
21#include "util/parse-options.h"
22
Andrew Vagin26a031e2012-08-07 16:56:04 +040023#include <linux/list.h>
24
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -030025struct perf_inject {
Jiri Olsa34069122013-10-29 19:04:57 +010026 struct perf_tool tool;
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +090027 struct perf_session *session;
Jiri Olsa34069122013-10-29 19:04:57 +010028 bool build_ids;
29 bool sched_stat;
Adrian Huntercd10b282015-04-30 17:37:26 +030030 bool have_auxtrace;
Jiri Olsa34069122013-10-29 19:04:57 +010031 const char *input_name;
32 struct perf_data_file output;
33 u64 bytes_written;
34 struct list_head samples;
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +030035 struct itrace_synth_opts itrace_synth_opts;
Andrew Vagin26a031e2012-08-07 16:56:04 +040036};
37
38struct event_entry {
39 struct list_head node;
40 u32 tid;
41 union perf_event event[0];
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -030042};
Tom Zanussi454c4072010-05-01 01:41:20 -050043
Adrian Huntercd17a9b2015-04-21 12:21:54 +030044static int output_bytes(struct perf_inject *inject, void *buf, size_t sz)
Tom Zanussi454c4072010-05-01 01:41:20 -050045{
Jiri Olsa34069122013-10-29 19:04:57 +010046 ssize_t size;
Tom Zanussi454c4072010-05-01 01:41:20 -050047
Adrian Huntercd17a9b2015-04-21 12:21:54 +030048 size = perf_data_file__write(&inject->output, buf, sz);
Jiri Olsa34069122013-10-29 19:04:57 +010049 if (size < 0)
50 return -errno;
Tom Zanussi454c4072010-05-01 01:41:20 -050051
Jiri Olsa34069122013-10-29 19:04:57 +010052 inject->bytes_written += size;
Tom Zanussi454c4072010-05-01 01:41:20 -050053 return 0;
54}
55
Adrian Huntercd17a9b2015-04-21 12:21:54 +030056static int perf_event__repipe_synth(struct perf_tool *tool,
57 union perf_event *event)
58{
59 struct perf_inject *inject = container_of(tool, struct perf_inject,
60 tool);
61
62 return output_bytes(inject, event, event->header.size);
63}
64
Arnaldo Carvalho de Melod704ebd2015-03-03 12:37:54 -030065static int perf_event__repipe_oe_synth(struct perf_tool *tool,
66 union perf_event *event,
67 struct ordered_events *oe __maybe_unused)
68{
69 return perf_event__repipe_synth(tool, event);
70}
71
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020072static int perf_event__repipe_op2_synth(struct perf_tool *tool,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -020073 union perf_event *event,
Irina Tirdea1d037ca2012-09-11 01:15:03 +030074 struct perf_session *session
75 __maybe_unused)
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -020076{
Adrian Hunter63c2c9f2013-07-04 16:20:20 +030077 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -020078}
79
Adrian Hunter47c3d102013-07-04 16:20:21 +030080static int perf_event__repipe_attr(struct perf_tool *tool,
81 union perf_event *event,
82 struct perf_evlist **pevlist)
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -020083{
Adrian Hunter89c97d92013-10-22 10:34:09 +030084 struct perf_inject *inject = container_of(tool, struct perf_inject,
85 tool);
Stephane Eranian1a1ed1b2012-05-15 13:28:11 +020086 int ret;
Adrian Hunter47c3d102013-07-04 16:20:21 +030087
88 ret = perf_event__process_attr(tool, event, pevlist);
Stephane Eranian1a1ed1b2012-05-15 13:28:11 +020089 if (ret)
90 return ret;
91
Jiri Olsaa261e4a2014-06-05 18:51:44 +020092 if (!inject->output.is_pipe)
Adrian Hunter89c97d92013-10-22 10:34:09 +030093 return 0;
94
Adrian Hunter47c3d102013-07-04 16:20:21 +030095 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -020096}
97
Adrian Huntere31f0d02015-04-30 17:37:27 +030098#ifdef HAVE_AUXTRACE_SUPPORT
99
100static int copy_bytes(struct perf_inject *inject, int fd, off_t size)
101{
102 char buf[4096];
103 ssize_t ssz;
104 int ret;
105
106 while (size > 0) {
107 ssz = read(fd, buf, min(size, (off_t)sizeof(buf)));
108 if (ssz < 0)
109 return -errno;
110 ret = output_bytes(inject, buf, ssz);
111 if (ret)
112 return ret;
113 size -= ssz;
114 }
115
116 return 0;
117}
118
Adrian Huntercd17a9b2015-04-21 12:21:54 +0300119static s64 perf_event__repipe_auxtrace(struct perf_tool *tool,
120 union perf_event *event,
121 struct perf_session *session
122 __maybe_unused)
123{
124 struct perf_inject *inject = container_of(tool, struct perf_inject,
125 tool);
126 int ret;
127
Adrian Huntercd10b282015-04-30 17:37:26 +0300128 inject->have_auxtrace = true;
129
Adrian Hunter99fa2982015-04-30 17:37:25 +0300130 if (!inject->output.is_pipe) {
131 off_t offset;
132
133 offset = lseek(inject->output.fd, 0, SEEK_CUR);
134 if (offset == -1)
135 return -errno;
136 ret = auxtrace_index__auxtrace_event(&session->auxtrace_index,
137 event, offset);
138 if (ret < 0)
139 return ret;
140 }
141
Adrian Huntercd17a9b2015-04-21 12:21:54 +0300142 if (perf_data_file__is_pipe(session->file) || !session->one_mmap) {
143 ret = output_bytes(inject, event, event->header.size);
144 if (ret < 0)
145 return ret;
146 ret = copy_bytes(inject, perf_data_file__fd(session->file),
147 event->auxtrace.size);
148 } else {
149 ret = output_bytes(inject, event,
150 event->header.size + event->auxtrace.size);
151 }
152 if (ret < 0)
153 return ret;
154
155 return event->auxtrace.size;
156}
157
Adrian Huntere31f0d02015-04-30 17:37:27 +0300158#else
159
160static s64
161perf_event__repipe_auxtrace(struct perf_tool *tool __maybe_unused,
162 union perf_event *event __maybe_unused,
163 struct perf_session *session __maybe_unused)
164{
165 pr_err("AUX area tracing not supported\n");
166 return -EINVAL;
167}
168
169#endif
170
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200171static int perf_event__repipe(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200172 union perf_event *event,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300173 struct perf_sample *sample __maybe_unused,
Adrian Hunter63c2c9f2013-07-04 16:20:20 +0300174 struct machine *machine __maybe_unused)
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -0200175{
Adrian Hunter63c2c9f2013-07-04 16:20:20 +0300176 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -0200177}
178
Andrew Vagin26a031e2012-08-07 16:56:04 +0400179typedef int (*inject_handler)(struct perf_tool *tool,
180 union perf_event *event,
181 struct perf_sample *sample,
182 struct perf_evsel *evsel,
183 struct machine *machine);
184
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200185static int perf_event__repipe_sample(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200186 union perf_event *event,
Andrew Vagin26a031e2012-08-07 16:56:04 +0400187 struct perf_sample *sample,
188 struct perf_evsel *evsel,
189 struct machine *machine)
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300190{
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300191 if (evsel->handler) {
192 inject_handler f = evsel->handler;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400193 return f(tool, event, sample, evsel, machine);
194 }
195
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400196 build_id__mark_dso_hit(tool, event, sample, evsel, machine);
197
Adrian Hunter63c2c9f2013-07-04 16:20:20 +0300198 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300199}
200
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200201static int perf_event__repipe_mmap(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200202 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200203 struct perf_sample *sample,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200204 struct machine *machine)
Tom Zanussi454c4072010-05-01 01:41:20 -0500205{
206 int err;
207
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200208 err = perf_event__process_mmap(tool, event, sample, machine);
209 perf_event__repipe(tool, event, sample, machine);
Tom Zanussi454c4072010-05-01 01:41:20 -0500210
211 return err;
212}
213
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200214static int perf_event__repipe_mmap2(struct perf_tool *tool,
215 union perf_event *event,
216 struct perf_sample *sample,
217 struct machine *machine)
218{
219 int err;
220
221 err = perf_event__process_mmap2(tool, event, sample, machine);
222 perf_event__repipe(tool, event, sample, machine);
223
224 return err;
225}
226
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300227static int perf_event__repipe_fork(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200228 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200229 struct perf_sample *sample,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200230 struct machine *machine)
Tom Zanussi454c4072010-05-01 01:41:20 -0500231{
232 int err;
233
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300234 err = perf_event__process_fork(tool, event, sample, machine);
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200235 perf_event__repipe(tool, event, sample, machine);
Tom Zanussi454c4072010-05-01 01:41:20 -0500236
237 return err;
238}
239
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300240static int perf_event__repipe_comm(struct perf_tool *tool,
241 union perf_event *event,
242 struct perf_sample *sample,
243 struct machine *machine)
244{
245 int err;
246
247 err = perf_event__process_comm(tool, event, sample, machine);
248 perf_event__repipe(tool, event, sample, machine);
249
250 return err;
251}
252
253static int perf_event__repipe_exit(struct perf_tool *tool,
254 union perf_event *event,
255 struct perf_sample *sample,
256 struct machine *machine)
257{
258 int err;
259
260 err = perf_event__process_exit(tool, event, sample, machine);
261 perf_event__repipe(tool, event, sample, machine);
262
263 return err;
264}
265
Adrian Hunter47c3d102013-07-04 16:20:21 +0300266static int perf_event__repipe_tracing_data(struct perf_tool *tool,
267 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200268 struct perf_session *session)
Tom Zanussi454c4072010-05-01 01:41:20 -0500269{
270 int err;
271
Adrian Hunter47c3d102013-07-04 16:20:21 +0300272 perf_event__repipe_synth(tool, event);
273 err = perf_event__process_tracing_data(tool, event, session);
Tom Zanussi454c4072010-05-01 01:41:20 -0500274
275 return err;
276}
277
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300278static int perf_event__repipe_id_index(struct perf_tool *tool,
279 union perf_event *event,
280 struct perf_session *session)
281{
282 int err;
283
284 perf_event__repipe_synth(tool, event);
285 err = perf_event__process_id_index(tool, event, session);
286
287 return err;
288}
289
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300290static int dso__read_build_id(struct dso *dso)
Tom Zanussi454c4072010-05-01 01:41:20 -0500291{
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300292 if (dso->has_build_id)
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300293 return 0;
Tom Zanussi454c4072010-05-01 01:41:20 -0500294
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300295 if (filename__read_build_id(dso->long_name, dso->build_id,
296 sizeof(dso->build_id)) > 0) {
297 dso->has_build_id = true;
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300298 return 0;
Tom Zanussi454c4072010-05-01 01:41:20 -0500299 }
300
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300301 return -1;
302}
Tom Zanussi454c4072010-05-01 01:41:20 -0500303
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300304static int dso__inject_build_id(struct dso *dso, struct perf_tool *tool,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200305 struct machine *machine)
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300306{
307 u16 misc = PERF_RECORD_MISC_USER;
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300308 int err;
Tom Zanussi454c4072010-05-01 01:41:20 -0500309
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300310 if (dso__read_build_id(dso) < 0) {
311 pr_debug("no build_id found for %s\n", dso->long_name);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300312 return -1;
313 }
Tom Zanussi454c4072010-05-01 01:41:20 -0500314
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300315 if (dso->kernel)
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300316 misc = PERF_RECORD_MISC_KERNEL;
317
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300318 err = perf_event__synthesize_build_id(tool, dso, misc, perf_event__repipe,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200319 machine);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300320 if (err) {
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300321 pr_err("Can't synthesize build_id event for %s\n", dso->long_name);
Tom Zanussi454c4072010-05-01 01:41:20 -0500322 return -1;
323 }
324
325 return 0;
326}
327
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200328static int perf_event__inject_buildid(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200329 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200330 struct perf_sample *sample,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300331 struct perf_evsel *evsel __maybe_unused,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200332 struct machine *machine)
Tom Zanussi454c4072010-05-01 01:41:20 -0500333{
334 struct addr_location al;
335 struct thread *thread;
336 u8 cpumode;
Tom Zanussi454c4072010-05-01 01:41:20 -0500337
338 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
339
Namhyung Kim13ce34d2014-05-12 09:56:42 +0900340 thread = machine__findnew_thread(machine, sample->pid, sample->tid);
Tom Zanussi454c4072010-05-01 01:41:20 -0500341 if (thread == NULL) {
342 pr_err("problem processing %d event, skipping it.\n",
343 event->header.type);
Tom Zanussi454c4072010-05-01 01:41:20 -0500344 goto repipe;
345 }
346
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -0300347 thread__find_addr_map(thread, cpumode, MAP__FUNCTION, sample->ip, &al);
Tom Zanussi454c4072010-05-01 01:41:20 -0500348
349 if (al.map != NULL) {
350 if (!al.map->dso->hit) {
351 al.map->dso->hit = 1;
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300352 if (map__load(al.map, NULL) >= 0) {
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200353 dso__inject_build_id(al.map->dso, tool, machine);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300354 /*
355 * If this fails, too bad, let the other side
356 * account this as unresolved.
357 */
Namhyung Kim393be2e2012-08-06 13:41:21 +0900358 } else {
Ingo Molnar89fe8082013-09-30 12:07:11 +0200359#ifdef HAVE_LIBELF_SUPPORT
Tom Zanussi454c4072010-05-01 01:41:20 -0500360 pr_warning("no symbols found in %s, maybe "
361 "install a debug package?\n",
362 al.map->dso->long_name);
Namhyung Kim393be2e2012-08-06 13:41:21 +0900363#endif
364 }
Tom Zanussi454c4072010-05-01 01:41:20 -0500365 }
366 }
367
368repipe:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200369 perf_event__repipe(tool, event, sample, machine);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300370 return 0;
Tom Zanussi454c4072010-05-01 01:41:20 -0500371}
372
Andrew Vagin26a031e2012-08-07 16:56:04 +0400373static int perf_inject__sched_process_exit(struct perf_tool *tool,
374 union perf_event *event __maybe_unused,
375 struct perf_sample *sample,
376 struct perf_evsel *evsel __maybe_unused,
377 struct machine *machine __maybe_unused)
378{
379 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
380 struct event_entry *ent;
381
382 list_for_each_entry(ent, &inject->samples, node) {
383 if (sample->tid == ent->tid) {
384 list_del_init(&ent->node);
385 free(ent);
386 break;
387 }
388 }
389
390 return 0;
391}
392
393static int perf_inject__sched_switch(struct perf_tool *tool,
394 union perf_event *event,
395 struct perf_sample *sample,
396 struct perf_evsel *evsel,
397 struct machine *machine)
398{
399 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
400 struct event_entry *ent;
401
402 perf_inject__sched_process_exit(tool, event, sample, evsel, machine);
403
404 ent = malloc(event->header.size + sizeof(struct event_entry));
405 if (ent == NULL) {
406 color_fprintf(stderr, PERF_COLOR_RED,
407 "Not enough memory to process sched switch event!");
408 return -1;
409 }
410
411 ent->tid = sample->tid;
412 memcpy(&ent->event, event, event->header.size);
413 list_add(&ent->node, &inject->samples);
414 return 0;
415}
416
417static int perf_inject__sched_stat(struct perf_tool *tool,
418 union perf_event *event __maybe_unused,
419 struct perf_sample *sample,
420 struct perf_evsel *evsel,
421 struct machine *machine)
422{
423 struct event_entry *ent;
424 union perf_event *event_sw;
425 struct perf_sample sample_sw;
426 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
427 u32 pid = perf_evsel__intval(evsel, sample, "pid");
428
429 list_for_each_entry(ent, &inject->samples, node) {
430 if (pid == ent->tid)
431 goto found;
432 }
433
434 return 0;
435found:
436 event_sw = &ent->event[0];
437 perf_evsel__parse_sample(evsel, event_sw, &sample_sw);
438
439 sample_sw.period = sample->period;
440 sample_sw.time = sample->time;
441 perf_event__synthesize_sample(event_sw, evsel->attr.sample_type,
Adrian Hunterd03f2172013-08-27 11:23:11 +0300442 evsel->attr.read_format, &sample_sw,
443 false);
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400444 build_id__mark_dso_hit(tool, event_sw, &sample_sw, evsel, machine);
Andrew Vagin26a031e2012-08-07 16:56:04 +0400445 return perf_event__repipe(tool, event_sw, &sample_sw, machine);
446}
447
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300448static void sig_handler(int sig __maybe_unused)
Tom Zanussi454c4072010-05-01 01:41:20 -0500449{
450 session_done = 1;
451}
452
Andrew Vagin26a031e2012-08-07 16:56:04 +0400453static int perf_evsel__check_stype(struct perf_evsel *evsel,
454 u64 sample_type, const char *sample_msg)
455{
456 struct perf_event_attr *attr = &evsel->attr;
457 const char *name = perf_evsel__name(evsel);
458
459 if (!(attr->sample_type & sample_type)) {
460 pr_err("Samples for %s event do not have %s attribute set.",
461 name, sample_msg);
462 return -EINVAL;
463 }
464
465 return 0;
466}
467
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300468static int __cmd_inject(struct perf_inject *inject)
Tom Zanussi454c4072010-05-01 01:41:20 -0500469{
Tom Zanussi454c4072010-05-01 01:41:20 -0500470 int ret = -EINVAL;
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900471 struct perf_session *session = inject->session;
Jiri Olsa34069122013-10-29 19:04:57 +0100472 struct perf_data_file *file_out = &inject->output;
Namhyung Kim42aa2762015-01-29 17:06:48 +0900473 int fd = perf_data_file__fd(file_out);
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300474 u64 output_data_offset;
Tom Zanussi454c4072010-05-01 01:41:20 -0500475
476 signal(SIGINT, sig_handler);
477
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300478 if (inject->build_ids || inject->sched_stat ||
479 inject->itrace_synth_opts.set) {
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300480 inject->tool.mmap = perf_event__repipe_mmap;
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200481 inject->tool.mmap2 = perf_event__repipe_mmap2;
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300482 inject->tool.fork = perf_event__repipe_fork;
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300483 inject->tool.tracing_data = perf_event__repipe_tracing_data;
Tom Zanussi454c4072010-05-01 01:41:20 -0500484 }
485
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300486 output_data_offset = session->header.data_offset;
487
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400488 if (inject->build_ids) {
489 inject->tool.sample = perf_event__inject_buildid;
490 } else if (inject->sched_stat) {
Andrew Vagin26a031e2012-08-07 16:56:04 +0400491 struct perf_evsel *evsel;
492
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300493 evlist__for_each(session->evlist, evsel) {
Andrew Vagin26a031e2012-08-07 16:56:04 +0400494 const char *name = perf_evsel__name(evsel);
495
496 if (!strcmp(name, "sched:sched_switch")) {
497 if (perf_evsel__check_stype(evsel, PERF_SAMPLE_TID, "TID"))
498 return -EINVAL;
499
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300500 evsel->handler = perf_inject__sched_switch;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400501 } else if (!strcmp(name, "sched:sched_process_exit"))
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300502 evsel->handler = perf_inject__sched_process_exit;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400503 else if (!strncmp(name, "sched:sched_stat_", 17))
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300504 evsel->handler = perf_inject__sched_stat;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400505 }
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300506 } else if (inject->itrace_synth_opts.set) {
507 session->itrace_synth_opts = &inject->itrace_synth_opts;
508 inject->itrace_synth_opts.inject = true;
509 inject->tool.comm = perf_event__repipe_comm;
510 inject->tool.exit = perf_event__repipe_exit;
511 inject->tool.id_index = perf_event__repipe_id_index;
512 inject->tool.auxtrace_info = perf_event__process_auxtrace_info;
513 inject->tool.auxtrace = perf_event__process_auxtrace;
514 inject->tool.ordered_events = true;
515 inject->tool.ordering_requires_timestamps = true;
516 /* Allow space in the header for new attributes */
517 output_data_offset = 4096;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400518 }
519
Adrian Hunter99fa2982015-04-30 17:37:25 +0300520 if (!inject->itrace_synth_opts.set)
521 auxtrace_index__free(&session->auxtrace_index);
522
Jiri Olsa34069122013-10-29 19:04:57 +0100523 if (!file_out->is_pipe)
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300524 lseek(fd, output_data_offset, SEEK_SET);
Andrew Vagine558a5b2012-08-07 16:56:02 +0400525
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -0300526 ret = perf_session__process_events(session);
Tom Zanussi454c4072010-05-01 01:41:20 -0500527
Jiri Olsa34069122013-10-29 19:04:57 +0100528 if (!file_out->is_pipe) {
Adrian Huntercd10b282015-04-30 17:37:26 +0300529 if (inject->build_ids) {
Adrian Huntere38b43c2014-07-14 13:02:34 +0300530 perf_header__set_feat(&session->header,
531 HEADER_BUILD_ID);
Adrian Huntercd10b282015-04-30 17:37:26 +0300532 if (inject->have_auxtrace)
533 dsos__hit_all(session);
534 }
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300535 /*
536 * The AUX areas have been removed and replaced with
537 * synthesized hardware events, so clear the feature flag.
538 */
539 if (inject->itrace_synth_opts.set)
540 perf_header__clear_feat(&session->header,
541 HEADER_AUXTRACE);
542 session->header.data_offset = output_data_offset;
Andrew Vagine558a5b2012-08-07 16:56:02 +0400543 session->header.data_size = inject->bytes_written;
Namhyung Kim42aa2762015-01-29 17:06:48 +0900544 perf_session__write_header(session, session->evlist, fd, true);
Andrew Vagine558a5b2012-08-07 16:56:02 +0400545 }
546
Tom Zanussi454c4072010-05-01 01:41:20 -0500547 return ret;
548}
549
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300550int cmd_inject(int argc, const char **argv, const char *prefix __maybe_unused)
Tom Zanussi454c4072010-05-01 01:41:20 -0500551{
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300552 struct perf_inject inject = {
553 .tool = {
554 .sample = perf_event__repipe_sample,
555 .mmap = perf_event__repipe,
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200556 .mmap2 = perf_event__repipe,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300557 .comm = perf_event__repipe,
558 .fork = perf_event__repipe,
559 .exit = perf_event__repipe,
560 .lost = perf_event__repipe,
Adrian Hunter4a96f7a2015-04-30 17:37:29 +0300561 .aux = perf_event__repipe,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300562 .read = perf_event__repipe_sample,
563 .throttle = perf_event__repipe,
564 .unthrottle = perf_event__repipe,
565 .attr = perf_event__repipe_attr,
Adrian Hunter47c3d102013-07-04 16:20:21 +0300566 .tracing_data = perf_event__repipe_op2_synth,
Adrian Huntercd17a9b2015-04-21 12:21:54 +0300567 .auxtrace_info = perf_event__repipe_op2_synth,
568 .auxtrace = perf_event__repipe_auxtrace,
569 .auxtrace_error = perf_event__repipe_op2_synth,
Arnaldo Carvalho de Melod704ebd2015-03-03 12:37:54 -0300570 .finished_round = perf_event__repipe_oe_synth,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300571 .build_id = perf_event__repipe_op2_synth,
Adrian Hunter3c659ee2014-10-27 15:49:22 +0200572 .id_index = perf_event__repipe_op2_synth,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300573 },
Andrew Vagine558a5b2012-08-07 16:56:02 +0400574 .input_name = "-",
Andrew Vagin26a031e2012-08-07 16:56:04 +0400575 .samples = LIST_HEAD_INIT(inject.samples),
Jiri Olsa34069122013-10-29 19:04:57 +0100576 .output = {
577 .path = "-",
578 .mode = PERF_DATA_MODE_WRITE,
579 },
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300580 };
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900581 struct perf_data_file file = {
582 .mode = PERF_DATA_MODE_READ,
583 };
584 int ret;
585
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300586 const struct option options[] = {
587 OPT_BOOLEAN('b', "build-ids", &inject.build_ids,
588 "Inject build-ids into the output stream"),
Andrew Vagine558a5b2012-08-07 16:56:02 +0400589 OPT_STRING('i', "input", &inject.input_name, "file",
590 "input file name"),
Jiri Olsa34069122013-10-29 19:04:57 +0100591 OPT_STRING('o', "output", &inject.output.path, "file",
Andrew Vagine558a5b2012-08-07 16:56:02 +0400592 "output file name"),
Andrew Vagin26a031e2012-08-07 16:56:04 +0400593 OPT_BOOLEAN('s', "sched-stat", &inject.sched_stat,
594 "Merge sched-stat and sched-switch for getting events "
595 "where and how long tasks slept"),
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300596 OPT_INCR('v', "verbose", &verbose,
597 "be more verbose (show build ids, etc)"),
Adrian Huntera7a2b8b2014-07-22 16:17:38 +0300598 OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name, "file",
599 "kallsyms pathname"),
Yunlong Songccaa4742015-04-02 21:47:11 +0800600 OPT_BOOLEAN('f', "force", &file.force, "don't complain, do it"),
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300601 OPT_CALLBACK_OPTARG(0, "itrace", &inject.itrace_synth_opts,
602 NULL, "opts", "Instruction Tracing options",
603 itrace_parse_synth_opts),
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300604 OPT_END()
605 };
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300606 const char * const inject_usage[] = {
607 "perf inject [<options>]",
608 NULL
609 };
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300610
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300611 argc = parse_options(argc, argv, options, inject_usage, 0);
Tom Zanussi454c4072010-05-01 01:41:20 -0500612
613 /*
614 * Any (unrecognized) arguments left?
615 */
616 if (argc)
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300617 usage_with_options(inject_usage, options);
Tom Zanussi454c4072010-05-01 01:41:20 -0500618
Jiri Olsa34069122013-10-29 19:04:57 +0100619 if (perf_data_file__open(&inject.output)) {
620 perror("failed to create output file");
621 return -1;
Andrew Vagine558a5b2012-08-07 16:56:02 +0400622 }
623
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -0300624 inject.tool.ordered_events = inject.sched_stat;
625
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900626 file.path = inject.input_name;
627 inject.session = perf_session__new(&file, true, &inject.tool);
628 if (inject.session == NULL)
Taeung Song52e028342014-09-24 10:33:37 +0900629 return -1;
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900630
Namhyung Kim0a7e6d12014-08-12 15:40:45 +0900631 if (symbol__init(&inject.session->header.env) < 0)
Tom Zanussi454c4072010-05-01 01:41:20 -0500632 return -1;
633
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900634 ret = __cmd_inject(&inject);
635
636 perf_session__delete(inject.session);
637
638 return ret;
Tom Zanussi454c4072010-05-01 01:41:20 -0500639}