blob: a13641e066f5608363c7eb1575f7e3414ae6863a [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"
Tom Zanussi454c4072010-05-01 01:41:20 -050019
20#include "util/parse-options.h"
21
Andrew Vagin26a031e2012-08-07 16:56:04 +040022#include <linux/list.h>
23
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -030024struct perf_inject {
Jiri Olsa34069122013-10-29 19:04:57 +010025 struct perf_tool tool;
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +090026 struct perf_session *session;
Jiri Olsa34069122013-10-29 19:04:57 +010027 bool build_ids;
28 bool sched_stat;
29 const char *input_name;
30 struct perf_data_file output;
31 u64 bytes_written;
32 struct list_head samples;
Andrew Vagin26a031e2012-08-07 16:56:04 +040033};
34
35struct event_entry {
36 struct list_head node;
37 u32 tid;
38 union perf_event event[0];
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -030039};
Tom Zanussi454c4072010-05-01 01:41:20 -050040
Andrew Vagine558a5b2012-08-07 16:56:02 +040041static int perf_event__repipe_synth(struct perf_tool *tool,
Adrian Hunter63c2c9f2013-07-04 16:20:20 +030042 union perf_event *event)
Tom Zanussi454c4072010-05-01 01:41:20 -050043{
Andrew Vagine558a5b2012-08-07 16:56:02 +040044 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
Jiri Olsa34069122013-10-29 19:04:57 +010045 ssize_t size;
Tom Zanussi454c4072010-05-01 01:41:20 -050046
Jiri Olsa34069122013-10-29 19:04:57 +010047 size = perf_data_file__write(&inject->output, event,
48 event->header.size);
49 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
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020056static int perf_event__repipe_op2_synth(struct perf_tool *tool,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -020057 union perf_event *event,
Irina Tirdea1d037ca2012-09-11 01:15:03 +030058 struct perf_session *session
59 __maybe_unused)
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -020060{
Adrian Hunter63c2c9f2013-07-04 16:20:20 +030061 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -020062}
63
Adrian Hunter47c3d102013-07-04 16:20:21 +030064static int perf_event__repipe_attr(struct perf_tool *tool,
65 union perf_event *event,
66 struct perf_evlist **pevlist)
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -020067{
Adrian Hunter89c97d92013-10-22 10:34:09 +030068 struct perf_inject *inject = container_of(tool, struct perf_inject,
69 tool);
Stephane Eranian1a1ed1b2012-05-15 13:28:11 +020070 int ret;
Adrian Hunter47c3d102013-07-04 16:20:21 +030071
72 ret = perf_event__process_attr(tool, event, pevlist);
Stephane Eranian1a1ed1b2012-05-15 13:28:11 +020073 if (ret)
74 return ret;
75
Jiri Olsaa261e4a2014-06-05 18:51:44 +020076 if (!inject->output.is_pipe)
Adrian Hunter89c97d92013-10-22 10:34:09 +030077 return 0;
78
Adrian Hunter47c3d102013-07-04 16:20:21 +030079 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -020080}
81
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020082static int perf_event__repipe(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -020083 union perf_event *event,
Irina Tirdea1d037ca2012-09-11 01:15:03 +030084 struct perf_sample *sample __maybe_unused,
Adrian Hunter63c2c9f2013-07-04 16:20:20 +030085 struct machine *machine __maybe_unused)
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -020086{
Adrian Hunter63c2c9f2013-07-04 16:20:20 +030087 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -020088}
89
Andrew Vagin26a031e2012-08-07 16:56:04 +040090typedef int (*inject_handler)(struct perf_tool *tool,
91 union perf_event *event,
92 struct perf_sample *sample,
93 struct perf_evsel *evsel,
94 struct machine *machine);
95
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020096static int perf_event__repipe_sample(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -020097 union perf_event *event,
Andrew Vagin26a031e2012-08-07 16:56:04 +040098 struct perf_sample *sample,
99 struct perf_evsel *evsel,
100 struct machine *machine)
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300101{
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300102 if (evsel->handler) {
103 inject_handler f = evsel->handler;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400104 return f(tool, event, sample, evsel, machine);
105 }
106
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400107 build_id__mark_dso_hit(tool, event, sample, evsel, machine);
108
Adrian Hunter63c2c9f2013-07-04 16:20:20 +0300109 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300110}
111
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200112static int perf_event__repipe_mmap(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200113 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200114 struct perf_sample *sample,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200115 struct machine *machine)
Tom Zanussi454c4072010-05-01 01:41:20 -0500116{
117 int err;
118
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200119 err = perf_event__process_mmap(tool, event, sample, machine);
120 perf_event__repipe(tool, event, sample, machine);
Tom Zanussi454c4072010-05-01 01:41:20 -0500121
122 return err;
123}
124
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200125static int perf_event__repipe_mmap2(struct perf_tool *tool,
126 union perf_event *event,
127 struct perf_sample *sample,
128 struct machine *machine)
129{
130 int err;
131
132 err = perf_event__process_mmap2(tool, event, sample, machine);
133 perf_event__repipe(tool, event, sample, machine);
134
135 return err;
136}
137
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300138static int perf_event__repipe_fork(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200139 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200140 struct perf_sample *sample,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200141 struct machine *machine)
Tom Zanussi454c4072010-05-01 01:41:20 -0500142{
143 int err;
144
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300145 err = perf_event__process_fork(tool, event, sample, machine);
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200146 perf_event__repipe(tool, event, sample, machine);
Tom Zanussi454c4072010-05-01 01:41:20 -0500147
148 return err;
149}
150
Adrian Hunter47c3d102013-07-04 16:20:21 +0300151static int perf_event__repipe_tracing_data(struct perf_tool *tool,
152 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200153 struct perf_session *session)
Tom Zanussi454c4072010-05-01 01:41:20 -0500154{
155 int err;
156
Adrian Hunter47c3d102013-07-04 16:20:21 +0300157 perf_event__repipe_synth(tool, event);
158 err = perf_event__process_tracing_data(tool, event, session);
Tom Zanussi454c4072010-05-01 01:41:20 -0500159
160 return err;
161}
162
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300163static int dso__read_build_id(struct dso *dso)
Tom Zanussi454c4072010-05-01 01:41:20 -0500164{
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300165 if (dso->has_build_id)
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300166 return 0;
Tom Zanussi454c4072010-05-01 01:41:20 -0500167
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300168 if (filename__read_build_id(dso->long_name, dso->build_id,
169 sizeof(dso->build_id)) > 0) {
170 dso->has_build_id = true;
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300171 return 0;
Tom Zanussi454c4072010-05-01 01:41:20 -0500172 }
173
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300174 return -1;
175}
Tom Zanussi454c4072010-05-01 01:41:20 -0500176
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300177static int dso__inject_build_id(struct dso *dso, struct perf_tool *tool,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200178 struct machine *machine)
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300179{
180 u16 misc = PERF_RECORD_MISC_USER;
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300181 int err;
Tom Zanussi454c4072010-05-01 01:41:20 -0500182
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300183 if (dso__read_build_id(dso) < 0) {
184 pr_debug("no build_id found for %s\n", dso->long_name);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300185 return -1;
186 }
Tom Zanussi454c4072010-05-01 01:41:20 -0500187
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300188 if (dso->kernel)
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300189 misc = PERF_RECORD_MISC_KERNEL;
190
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300191 err = perf_event__synthesize_build_id(tool, dso, misc, perf_event__repipe,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200192 machine);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300193 if (err) {
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300194 pr_err("Can't synthesize build_id event for %s\n", dso->long_name);
Tom Zanussi454c4072010-05-01 01:41:20 -0500195 return -1;
196 }
197
198 return 0;
199}
200
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200201static int perf_event__inject_buildid(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,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300204 struct perf_evsel *evsel __maybe_unused,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200205 struct machine *machine)
Tom Zanussi454c4072010-05-01 01:41:20 -0500206{
207 struct addr_location al;
208 struct thread *thread;
209 u8 cpumode;
Tom Zanussi454c4072010-05-01 01:41:20 -0500210
211 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
212
Namhyung Kim13ce34d2014-05-12 09:56:42 +0900213 thread = machine__findnew_thread(machine, sample->pid, sample->tid);
Tom Zanussi454c4072010-05-01 01:41:20 -0500214 if (thread == NULL) {
215 pr_err("problem processing %d event, skipping it.\n",
216 event->header.type);
Tom Zanussi454c4072010-05-01 01:41:20 -0500217 goto repipe;
218 }
219
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -0300220 thread__find_addr_map(thread, cpumode, MAP__FUNCTION, sample->ip, &al);
Tom Zanussi454c4072010-05-01 01:41:20 -0500221
222 if (al.map != NULL) {
223 if (!al.map->dso->hit) {
224 al.map->dso->hit = 1;
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300225 if (map__load(al.map, NULL) >= 0) {
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200226 dso__inject_build_id(al.map->dso, tool, machine);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300227 /*
228 * If this fails, too bad, let the other side
229 * account this as unresolved.
230 */
Namhyung Kim393be2e2012-08-06 13:41:21 +0900231 } else {
Ingo Molnar89fe8082013-09-30 12:07:11 +0200232#ifdef HAVE_LIBELF_SUPPORT
Tom Zanussi454c4072010-05-01 01:41:20 -0500233 pr_warning("no symbols found in %s, maybe "
234 "install a debug package?\n",
235 al.map->dso->long_name);
Namhyung Kim393be2e2012-08-06 13:41:21 +0900236#endif
237 }
Tom Zanussi454c4072010-05-01 01:41:20 -0500238 }
239 }
240
241repipe:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200242 perf_event__repipe(tool, event, sample, machine);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300243 return 0;
Tom Zanussi454c4072010-05-01 01:41:20 -0500244}
245
Andrew Vagin26a031e2012-08-07 16:56:04 +0400246static int perf_inject__sched_process_exit(struct perf_tool *tool,
247 union perf_event *event __maybe_unused,
248 struct perf_sample *sample,
249 struct perf_evsel *evsel __maybe_unused,
250 struct machine *machine __maybe_unused)
251{
252 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
253 struct event_entry *ent;
254
255 list_for_each_entry(ent, &inject->samples, node) {
256 if (sample->tid == ent->tid) {
257 list_del_init(&ent->node);
258 free(ent);
259 break;
260 }
261 }
262
263 return 0;
264}
265
266static int perf_inject__sched_switch(struct perf_tool *tool,
267 union perf_event *event,
268 struct perf_sample *sample,
269 struct perf_evsel *evsel,
270 struct machine *machine)
271{
272 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
273 struct event_entry *ent;
274
275 perf_inject__sched_process_exit(tool, event, sample, evsel, machine);
276
277 ent = malloc(event->header.size + sizeof(struct event_entry));
278 if (ent == NULL) {
279 color_fprintf(stderr, PERF_COLOR_RED,
280 "Not enough memory to process sched switch event!");
281 return -1;
282 }
283
284 ent->tid = sample->tid;
285 memcpy(&ent->event, event, event->header.size);
286 list_add(&ent->node, &inject->samples);
287 return 0;
288}
289
290static int perf_inject__sched_stat(struct perf_tool *tool,
291 union perf_event *event __maybe_unused,
292 struct perf_sample *sample,
293 struct perf_evsel *evsel,
294 struct machine *machine)
295{
296 struct event_entry *ent;
297 union perf_event *event_sw;
298 struct perf_sample sample_sw;
299 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
300 u32 pid = perf_evsel__intval(evsel, sample, "pid");
301
302 list_for_each_entry(ent, &inject->samples, node) {
303 if (pid == ent->tid)
304 goto found;
305 }
306
307 return 0;
308found:
309 event_sw = &ent->event[0];
310 perf_evsel__parse_sample(evsel, event_sw, &sample_sw);
311
312 sample_sw.period = sample->period;
313 sample_sw.time = sample->time;
314 perf_event__synthesize_sample(event_sw, evsel->attr.sample_type,
Adrian Hunterd03f2172013-08-27 11:23:11 +0300315 evsel->attr.read_format, &sample_sw,
316 false);
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400317 build_id__mark_dso_hit(tool, event_sw, &sample_sw, evsel, machine);
Andrew Vagin26a031e2012-08-07 16:56:04 +0400318 return perf_event__repipe(tool, event_sw, &sample_sw, machine);
319}
320
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300321static void sig_handler(int sig __maybe_unused)
Tom Zanussi454c4072010-05-01 01:41:20 -0500322{
323 session_done = 1;
324}
325
Andrew Vagin26a031e2012-08-07 16:56:04 +0400326static int perf_evsel__check_stype(struct perf_evsel *evsel,
327 u64 sample_type, const char *sample_msg)
328{
329 struct perf_event_attr *attr = &evsel->attr;
330 const char *name = perf_evsel__name(evsel);
331
332 if (!(attr->sample_type & sample_type)) {
333 pr_err("Samples for %s event do not have %s attribute set.",
334 name, sample_msg);
335 return -EINVAL;
336 }
337
338 return 0;
339}
340
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300341static int __cmd_inject(struct perf_inject *inject)
Tom Zanussi454c4072010-05-01 01:41:20 -0500342{
Tom Zanussi454c4072010-05-01 01:41:20 -0500343 int ret = -EINVAL;
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900344 struct perf_session *session = inject->session;
Jiri Olsa34069122013-10-29 19:04:57 +0100345 struct perf_data_file *file_out = &inject->output;
Namhyung Kim42aa2762015-01-29 17:06:48 +0900346 int fd = perf_data_file__fd(file_out);
Tom Zanussi454c4072010-05-01 01:41:20 -0500347
348 signal(SIGINT, sig_handler);
349
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400350 if (inject->build_ids || inject->sched_stat) {
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300351 inject->tool.mmap = perf_event__repipe_mmap;
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200352 inject->tool.mmap2 = perf_event__repipe_mmap2;
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300353 inject->tool.fork = perf_event__repipe_fork;
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300354 inject->tool.tracing_data = perf_event__repipe_tracing_data;
Tom Zanussi454c4072010-05-01 01:41:20 -0500355 }
356
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400357 if (inject->build_ids) {
358 inject->tool.sample = perf_event__inject_buildid;
359 } else if (inject->sched_stat) {
Andrew Vagin26a031e2012-08-07 16:56:04 +0400360 struct perf_evsel *evsel;
361
Jiri Olsa0a8cb852014-07-06 14:18:21 +0200362 inject->tool.ordered_events = true;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400363
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300364 evlist__for_each(session->evlist, evsel) {
Andrew Vagin26a031e2012-08-07 16:56:04 +0400365 const char *name = perf_evsel__name(evsel);
366
367 if (!strcmp(name, "sched:sched_switch")) {
368 if (perf_evsel__check_stype(evsel, PERF_SAMPLE_TID, "TID"))
369 return -EINVAL;
370
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300371 evsel->handler = perf_inject__sched_switch;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400372 } else if (!strcmp(name, "sched:sched_process_exit"))
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300373 evsel->handler = perf_inject__sched_process_exit;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400374 else if (!strncmp(name, "sched:sched_stat_", 17))
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300375 evsel->handler = perf_inject__sched_stat;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400376 }
377 }
378
Jiri Olsa34069122013-10-29 19:04:57 +0100379 if (!file_out->is_pipe)
Namhyung Kim42aa2762015-01-29 17:06:48 +0900380 lseek(fd, session->header.data_offset, SEEK_SET);
Andrew Vagine558a5b2012-08-07 16:56:02 +0400381
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300382 ret = perf_session__process_events(session, &inject->tool);
Tom Zanussi454c4072010-05-01 01:41:20 -0500383
Jiri Olsa34069122013-10-29 19:04:57 +0100384 if (!file_out->is_pipe) {
Adrian Huntere38b43c2014-07-14 13:02:34 +0300385 if (inject->build_ids)
386 perf_header__set_feat(&session->header,
387 HEADER_BUILD_ID);
Andrew Vagine558a5b2012-08-07 16:56:02 +0400388 session->header.data_size = inject->bytes_written;
Namhyung Kim42aa2762015-01-29 17:06:48 +0900389 perf_session__write_header(session, session->evlist, fd, true);
Andrew Vagine558a5b2012-08-07 16:56:02 +0400390 }
391
Tom Zanussi454c4072010-05-01 01:41:20 -0500392 return ret;
393}
394
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300395int cmd_inject(int argc, const char **argv, const char *prefix __maybe_unused)
Tom Zanussi454c4072010-05-01 01:41:20 -0500396{
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300397 struct perf_inject inject = {
398 .tool = {
399 .sample = perf_event__repipe_sample,
400 .mmap = perf_event__repipe,
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200401 .mmap2 = perf_event__repipe,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300402 .comm = perf_event__repipe,
403 .fork = perf_event__repipe,
404 .exit = perf_event__repipe,
405 .lost = perf_event__repipe,
406 .read = perf_event__repipe_sample,
407 .throttle = perf_event__repipe,
408 .unthrottle = perf_event__repipe,
409 .attr = perf_event__repipe_attr,
Adrian Hunter47c3d102013-07-04 16:20:21 +0300410 .tracing_data = perf_event__repipe_op2_synth,
Adrian Huntera609bda2013-07-04 16:20:22 +0300411 .finished_round = perf_event__repipe_op2_synth,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300412 .build_id = perf_event__repipe_op2_synth,
Adrian Hunter3c659ee2014-10-27 15:49:22 +0200413 .id_index = perf_event__repipe_op2_synth,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300414 },
Andrew Vagine558a5b2012-08-07 16:56:02 +0400415 .input_name = "-",
Andrew Vagin26a031e2012-08-07 16:56:04 +0400416 .samples = LIST_HEAD_INIT(inject.samples),
Jiri Olsa34069122013-10-29 19:04:57 +0100417 .output = {
418 .path = "-",
419 .mode = PERF_DATA_MODE_WRITE,
420 },
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300421 };
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900422 struct perf_data_file file = {
423 .mode = PERF_DATA_MODE_READ,
424 };
425 int ret;
426
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300427 const struct option options[] = {
428 OPT_BOOLEAN('b', "build-ids", &inject.build_ids,
429 "Inject build-ids into the output stream"),
Andrew Vagine558a5b2012-08-07 16:56:02 +0400430 OPT_STRING('i', "input", &inject.input_name, "file",
431 "input file name"),
Jiri Olsa34069122013-10-29 19:04:57 +0100432 OPT_STRING('o', "output", &inject.output.path, "file",
Andrew Vagine558a5b2012-08-07 16:56:02 +0400433 "output file name"),
Andrew Vagin26a031e2012-08-07 16:56:04 +0400434 OPT_BOOLEAN('s', "sched-stat", &inject.sched_stat,
435 "Merge sched-stat and sched-switch for getting events "
436 "where and how long tasks slept"),
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300437 OPT_INCR('v', "verbose", &verbose,
438 "be more verbose (show build ids, etc)"),
Adrian Huntera7a2b8b2014-07-22 16:17:38 +0300439 OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name, "file",
440 "kallsyms pathname"),
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300441 OPT_END()
442 };
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300443 const char * const inject_usage[] = {
444 "perf inject [<options>]",
445 NULL
446 };
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300447
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300448 argc = parse_options(argc, argv, options, inject_usage, 0);
Tom Zanussi454c4072010-05-01 01:41:20 -0500449
450 /*
451 * Any (unrecognized) arguments left?
452 */
453 if (argc)
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300454 usage_with_options(inject_usage, options);
Tom Zanussi454c4072010-05-01 01:41:20 -0500455
Jiri Olsa34069122013-10-29 19:04:57 +0100456 if (perf_data_file__open(&inject.output)) {
457 perror("failed to create output file");
458 return -1;
Andrew Vagine558a5b2012-08-07 16:56:02 +0400459 }
460
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900461 file.path = inject.input_name;
462 inject.session = perf_session__new(&file, true, &inject.tool);
463 if (inject.session == NULL)
Taeung Song52e028342014-09-24 10:33:37 +0900464 return -1;
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900465
Namhyung Kim0a7e6d12014-08-12 15:40:45 +0900466 if (symbol__init(&inject.session->header.env) < 0)
Tom Zanussi454c4072010-05-01 01:41:20 -0500467 return -1;
468
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900469 ret = __cmd_inject(&inject);
470
471 perf_session__delete(inject.session);
472
473 return ret;
Tom Zanussi454c4072010-05-01 01:41:20 -0500474}