blob: 40a33d7334cce224fb0ac8317554189f1821dfcf [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 Melod704ebd2015-03-03 12:37:54 -030056static int perf_event__repipe_oe_synth(struct perf_tool *tool,
57 union perf_event *event,
58 struct ordered_events *oe __maybe_unused)
59{
60 return perf_event__repipe_synth(tool, event);
61}
62
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020063static int perf_event__repipe_op2_synth(struct perf_tool *tool,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -020064 union perf_event *event,
Irina Tirdea1d037ca2012-09-11 01:15:03 +030065 struct perf_session *session
66 __maybe_unused)
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -020067{
Adrian Hunter63c2c9f2013-07-04 16:20:20 +030068 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -020069}
70
Adrian Hunter47c3d102013-07-04 16:20:21 +030071static int perf_event__repipe_attr(struct perf_tool *tool,
72 union perf_event *event,
73 struct perf_evlist **pevlist)
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -020074{
Adrian Hunter89c97d92013-10-22 10:34:09 +030075 struct perf_inject *inject = container_of(tool, struct perf_inject,
76 tool);
Stephane Eranian1a1ed1b2012-05-15 13:28:11 +020077 int ret;
Adrian Hunter47c3d102013-07-04 16:20:21 +030078
79 ret = perf_event__process_attr(tool, event, pevlist);
Stephane Eranian1a1ed1b2012-05-15 13:28:11 +020080 if (ret)
81 return ret;
82
Jiri Olsaa261e4a2014-06-05 18:51:44 +020083 if (!inject->output.is_pipe)
Adrian Hunter89c97d92013-10-22 10:34:09 +030084 return 0;
85
Adrian Hunter47c3d102013-07-04 16:20:21 +030086 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -020087}
88
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020089static int perf_event__repipe(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -020090 union perf_event *event,
Irina Tirdea1d037ca2012-09-11 01:15:03 +030091 struct perf_sample *sample __maybe_unused,
Adrian Hunter63c2c9f2013-07-04 16:20:20 +030092 struct machine *machine __maybe_unused)
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -020093{
Adrian Hunter63c2c9f2013-07-04 16:20:20 +030094 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -020095}
96
Andrew Vagin26a031e2012-08-07 16:56:04 +040097typedef int (*inject_handler)(struct perf_tool *tool,
98 union perf_event *event,
99 struct perf_sample *sample,
100 struct perf_evsel *evsel,
101 struct machine *machine);
102
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200103static int perf_event__repipe_sample(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200104 union perf_event *event,
Andrew Vagin26a031e2012-08-07 16:56:04 +0400105 struct perf_sample *sample,
106 struct perf_evsel *evsel,
107 struct machine *machine)
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300108{
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300109 if (evsel->handler) {
110 inject_handler f = evsel->handler;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400111 return f(tool, event, sample, evsel, machine);
112 }
113
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400114 build_id__mark_dso_hit(tool, event, sample, evsel, machine);
115
Adrian Hunter63c2c9f2013-07-04 16:20:20 +0300116 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300117}
118
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200119static int perf_event__repipe_mmap(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200120 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200121 struct perf_sample *sample,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200122 struct machine *machine)
Tom Zanussi454c4072010-05-01 01:41:20 -0500123{
124 int err;
125
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200126 err = perf_event__process_mmap(tool, event, sample, machine);
127 perf_event__repipe(tool, event, sample, machine);
Tom Zanussi454c4072010-05-01 01:41:20 -0500128
129 return err;
130}
131
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200132static int perf_event__repipe_mmap2(struct perf_tool *tool,
133 union perf_event *event,
134 struct perf_sample *sample,
135 struct machine *machine)
136{
137 int err;
138
139 err = perf_event__process_mmap2(tool, event, sample, machine);
140 perf_event__repipe(tool, event, sample, machine);
141
142 return err;
143}
144
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300145static int perf_event__repipe_fork(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200146 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200147 struct perf_sample *sample,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200148 struct machine *machine)
Tom Zanussi454c4072010-05-01 01:41:20 -0500149{
150 int err;
151
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300152 err = perf_event__process_fork(tool, event, sample, machine);
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200153 perf_event__repipe(tool, event, sample, machine);
Tom Zanussi454c4072010-05-01 01:41:20 -0500154
155 return err;
156}
157
Adrian Hunter47c3d102013-07-04 16:20:21 +0300158static int perf_event__repipe_tracing_data(struct perf_tool *tool,
159 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200160 struct perf_session *session)
Tom Zanussi454c4072010-05-01 01:41:20 -0500161{
162 int err;
163
Adrian Hunter47c3d102013-07-04 16:20:21 +0300164 perf_event__repipe_synth(tool, event);
165 err = perf_event__process_tracing_data(tool, event, session);
Tom Zanussi454c4072010-05-01 01:41:20 -0500166
167 return err;
168}
169
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300170static int dso__read_build_id(struct dso *dso)
Tom Zanussi454c4072010-05-01 01:41:20 -0500171{
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300172 if (dso->has_build_id)
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300173 return 0;
Tom Zanussi454c4072010-05-01 01:41:20 -0500174
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300175 if (filename__read_build_id(dso->long_name, dso->build_id,
176 sizeof(dso->build_id)) > 0) {
177 dso->has_build_id = true;
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300178 return 0;
Tom Zanussi454c4072010-05-01 01:41:20 -0500179 }
180
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300181 return -1;
182}
Tom Zanussi454c4072010-05-01 01:41:20 -0500183
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300184static int dso__inject_build_id(struct dso *dso, struct perf_tool *tool,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200185 struct machine *machine)
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300186{
187 u16 misc = PERF_RECORD_MISC_USER;
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300188 int err;
Tom Zanussi454c4072010-05-01 01:41:20 -0500189
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300190 if (dso__read_build_id(dso) < 0) {
191 pr_debug("no build_id found for %s\n", dso->long_name);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300192 return -1;
193 }
Tom Zanussi454c4072010-05-01 01:41:20 -0500194
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300195 if (dso->kernel)
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300196 misc = PERF_RECORD_MISC_KERNEL;
197
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300198 err = perf_event__synthesize_build_id(tool, dso, misc, perf_event__repipe,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200199 machine);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300200 if (err) {
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300201 pr_err("Can't synthesize build_id event for %s\n", dso->long_name);
Tom Zanussi454c4072010-05-01 01:41:20 -0500202 return -1;
203 }
204
205 return 0;
206}
207
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200208static int perf_event__inject_buildid(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200209 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200210 struct perf_sample *sample,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300211 struct perf_evsel *evsel __maybe_unused,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200212 struct machine *machine)
Tom Zanussi454c4072010-05-01 01:41:20 -0500213{
214 struct addr_location al;
215 struct thread *thread;
216 u8 cpumode;
Tom Zanussi454c4072010-05-01 01:41:20 -0500217
218 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
219
Namhyung Kim13ce34d2014-05-12 09:56:42 +0900220 thread = machine__findnew_thread(machine, sample->pid, sample->tid);
Tom Zanussi454c4072010-05-01 01:41:20 -0500221 if (thread == NULL) {
222 pr_err("problem processing %d event, skipping it.\n",
223 event->header.type);
Tom Zanussi454c4072010-05-01 01:41:20 -0500224 goto repipe;
225 }
226
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -0300227 thread__find_addr_map(thread, cpumode, MAP__FUNCTION, sample->ip, &al);
Tom Zanussi454c4072010-05-01 01:41:20 -0500228
229 if (al.map != NULL) {
230 if (!al.map->dso->hit) {
231 al.map->dso->hit = 1;
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300232 if (map__load(al.map, NULL) >= 0) {
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200233 dso__inject_build_id(al.map->dso, tool, machine);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300234 /*
235 * If this fails, too bad, let the other side
236 * account this as unresolved.
237 */
Namhyung Kim393be2e2012-08-06 13:41:21 +0900238 } else {
Ingo Molnar89fe8082013-09-30 12:07:11 +0200239#ifdef HAVE_LIBELF_SUPPORT
Tom Zanussi454c4072010-05-01 01:41:20 -0500240 pr_warning("no symbols found in %s, maybe "
241 "install a debug package?\n",
242 al.map->dso->long_name);
Namhyung Kim393be2e2012-08-06 13:41:21 +0900243#endif
244 }
Tom Zanussi454c4072010-05-01 01:41:20 -0500245 }
246 }
247
248repipe:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200249 perf_event__repipe(tool, event, sample, machine);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300250 return 0;
Tom Zanussi454c4072010-05-01 01:41:20 -0500251}
252
Andrew Vagin26a031e2012-08-07 16:56:04 +0400253static int perf_inject__sched_process_exit(struct perf_tool *tool,
254 union perf_event *event __maybe_unused,
255 struct perf_sample *sample,
256 struct perf_evsel *evsel __maybe_unused,
257 struct machine *machine __maybe_unused)
258{
259 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
260 struct event_entry *ent;
261
262 list_for_each_entry(ent, &inject->samples, node) {
263 if (sample->tid == ent->tid) {
264 list_del_init(&ent->node);
265 free(ent);
266 break;
267 }
268 }
269
270 return 0;
271}
272
273static int perf_inject__sched_switch(struct perf_tool *tool,
274 union perf_event *event,
275 struct perf_sample *sample,
276 struct perf_evsel *evsel,
277 struct machine *machine)
278{
279 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
280 struct event_entry *ent;
281
282 perf_inject__sched_process_exit(tool, event, sample, evsel, machine);
283
284 ent = malloc(event->header.size + sizeof(struct event_entry));
285 if (ent == NULL) {
286 color_fprintf(stderr, PERF_COLOR_RED,
287 "Not enough memory to process sched switch event!");
288 return -1;
289 }
290
291 ent->tid = sample->tid;
292 memcpy(&ent->event, event, event->header.size);
293 list_add(&ent->node, &inject->samples);
294 return 0;
295}
296
297static int perf_inject__sched_stat(struct perf_tool *tool,
298 union perf_event *event __maybe_unused,
299 struct perf_sample *sample,
300 struct perf_evsel *evsel,
301 struct machine *machine)
302{
303 struct event_entry *ent;
304 union perf_event *event_sw;
305 struct perf_sample sample_sw;
306 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
307 u32 pid = perf_evsel__intval(evsel, sample, "pid");
308
309 list_for_each_entry(ent, &inject->samples, node) {
310 if (pid == ent->tid)
311 goto found;
312 }
313
314 return 0;
315found:
316 event_sw = &ent->event[0];
317 perf_evsel__parse_sample(evsel, event_sw, &sample_sw);
318
319 sample_sw.period = sample->period;
320 sample_sw.time = sample->time;
321 perf_event__synthesize_sample(event_sw, evsel->attr.sample_type,
Adrian Hunterd03f2172013-08-27 11:23:11 +0300322 evsel->attr.read_format, &sample_sw,
323 false);
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400324 build_id__mark_dso_hit(tool, event_sw, &sample_sw, evsel, machine);
Andrew Vagin26a031e2012-08-07 16:56:04 +0400325 return perf_event__repipe(tool, event_sw, &sample_sw, machine);
326}
327
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300328static void sig_handler(int sig __maybe_unused)
Tom Zanussi454c4072010-05-01 01:41:20 -0500329{
330 session_done = 1;
331}
332
Andrew Vagin26a031e2012-08-07 16:56:04 +0400333static int perf_evsel__check_stype(struct perf_evsel *evsel,
334 u64 sample_type, const char *sample_msg)
335{
336 struct perf_event_attr *attr = &evsel->attr;
337 const char *name = perf_evsel__name(evsel);
338
339 if (!(attr->sample_type & sample_type)) {
340 pr_err("Samples for %s event do not have %s attribute set.",
341 name, sample_msg);
342 return -EINVAL;
343 }
344
345 return 0;
346}
347
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300348static int __cmd_inject(struct perf_inject *inject)
Tom Zanussi454c4072010-05-01 01:41:20 -0500349{
Tom Zanussi454c4072010-05-01 01:41:20 -0500350 int ret = -EINVAL;
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900351 struct perf_session *session = inject->session;
Jiri Olsa34069122013-10-29 19:04:57 +0100352 struct perf_data_file *file_out = &inject->output;
Namhyung Kim42aa2762015-01-29 17:06:48 +0900353 int fd = perf_data_file__fd(file_out);
Tom Zanussi454c4072010-05-01 01:41:20 -0500354
355 signal(SIGINT, sig_handler);
356
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400357 if (inject->build_ids || inject->sched_stat) {
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300358 inject->tool.mmap = perf_event__repipe_mmap;
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200359 inject->tool.mmap2 = perf_event__repipe_mmap2;
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300360 inject->tool.fork = perf_event__repipe_fork;
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300361 inject->tool.tracing_data = perf_event__repipe_tracing_data;
Tom Zanussi454c4072010-05-01 01:41:20 -0500362 }
363
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400364 if (inject->build_ids) {
365 inject->tool.sample = perf_event__inject_buildid;
366 } else if (inject->sched_stat) {
Andrew Vagin26a031e2012-08-07 16:56:04 +0400367 struct perf_evsel *evsel;
368
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300369 evlist__for_each(session->evlist, evsel) {
Andrew Vagin26a031e2012-08-07 16:56:04 +0400370 const char *name = perf_evsel__name(evsel);
371
372 if (!strcmp(name, "sched:sched_switch")) {
373 if (perf_evsel__check_stype(evsel, PERF_SAMPLE_TID, "TID"))
374 return -EINVAL;
375
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300376 evsel->handler = perf_inject__sched_switch;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400377 } else if (!strcmp(name, "sched:sched_process_exit"))
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300378 evsel->handler = perf_inject__sched_process_exit;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400379 else if (!strncmp(name, "sched:sched_stat_", 17))
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300380 evsel->handler = perf_inject__sched_stat;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400381 }
382 }
383
Jiri Olsa34069122013-10-29 19:04:57 +0100384 if (!file_out->is_pipe)
Namhyung Kim42aa2762015-01-29 17:06:48 +0900385 lseek(fd, session->header.data_offset, SEEK_SET);
Andrew Vagine558a5b2012-08-07 16:56:02 +0400386
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -0300387 ret = perf_session__process_events(session);
Tom Zanussi454c4072010-05-01 01:41:20 -0500388
Jiri Olsa34069122013-10-29 19:04:57 +0100389 if (!file_out->is_pipe) {
Adrian Huntere38b43c2014-07-14 13:02:34 +0300390 if (inject->build_ids)
391 perf_header__set_feat(&session->header,
392 HEADER_BUILD_ID);
Andrew Vagine558a5b2012-08-07 16:56:02 +0400393 session->header.data_size = inject->bytes_written;
Namhyung Kim42aa2762015-01-29 17:06:48 +0900394 perf_session__write_header(session, session->evlist, fd, true);
Andrew Vagine558a5b2012-08-07 16:56:02 +0400395 }
396
Tom Zanussi454c4072010-05-01 01:41:20 -0500397 return ret;
398}
399
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300400int cmd_inject(int argc, const char **argv, const char *prefix __maybe_unused)
Tom Zanussi454c4072010-05-01 01:41:20 -0500401{
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300402 struct perf_inject inject = {
403 .tool = {
404 .sample = perf_event__repipe_sample,
405 .mmap = perf_event__repipe,
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200406 .mmap2 = perf_event__repipe,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300407 .comm = perf_event__repipe,
408 .fork = perf_event__repipe,
409 .exit = perf_event__repipe,
410 .lost = perf_event__repipe,
411 .read = perf_event__repipe_sample,
412 .throttle = perf_event__repipe,
413 .unthrottle = perf_event__repipe,
414 .attr = perf_event__repipe_attr,
Adrian Hunter47c3d102013-07-04 16:20:21 +0300415 .tracing_data = perf_event__repipe_op2_synth,
Arnaldo Carvalho de Melod704ebd2015-03-03 12:37:54 -0300416 .finished_round = perf_event__repipe_oe_synth,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300417 .build_id = perf_event__repipe_op2_synth,
Adrian Hunter3c659ee2014-10-27 15:49:22 +0200418 .id_index = perf_event__repipe_op2_synth,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300419 },
Andrew Vagine558a5b2012-08-07 16:56:02 +0400420 .input_name = "-",
Andrew Vagin26a031e2012-08-07 16:56:04 +0400421 .samples = LIST_HEAD_INIT(inject.samples),
Jiri Olsa34069122013-10-29 19:04:57 +0100422 .output = {
423 .path = "-",
424 .mode = PERF_DATA_MODE_WRITE,
425 },
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300426 };
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900427 struct perf_data_file file = {
428 .mode = PERF_DATA_MODE_READ,
429 };
430 int ret;
431
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300432 const struct option options[] = {
433 OPT_BOOLEAN('b', "build-ids", &inject.build_ids,
434 "Inject build-ids into the output stream"),
Andrew Vagine558a5b2012-08-07 16:56:02 +0400435 OPT_STRING('i', "input", &inject.input_name, "file",
436 "input file name"),
Jiri Olsa34069122013-10-29 19:04:57 +0100437 OPT_STRING('o', "output", &inject.output.path, "file",
Andrew Vagine558a5b2012-08-07 16:56:02 +0400438 "output file name"),
Andrew Vagin26a031e2012-08-07 16:56:04 +0400439 OPT_BOOLEAN('s', "sched-stat", &inject.sched_stat,
440 "Merge sched-stat and sched-switch for getting events "
441 "where and how long tasks slept"),
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300442 OPT_INCR('v', "verbose", &verbose,
443 "be more verbose (show build ids, etc)"),
Adrian Huntera7a2b8b2014-07-22 16:17:38 +0300444 OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name, "file",
445 "kallsyms pathname"),
Yunlong Songccaa4742015-04-02 21:47:11 +0800446 OPT_BOOLEAN('f', "force", &file.force, "don't complain, do it"),
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300447 OPT_END()
448 };
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300449 const char * const inject_usage[] = {
450 "perf inject [<options>]",
451 NULL
452 };
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300453
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300454 argc = parse_options(argc, argv, options, inject_usage, 0);
Tom Zanussi454c4072010-05-01 01:41:20 -0500455
456 /*
457 * Any (unrecognized) arguments left?
458 */
459 if (argc)
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300460 usage_with_options(inject_usage, options);
Tom Zanussi454c4072010-05-01 01:41:20 -0500461
Jiri Olsa34069122013-10-29 19:04:57 +0100462 if (perf_data_file__open(&inject.output)) {
463 perror("failed to create output file");
464 return -1;
Andrew Vagine558a5b2012-08-07 16:56:02 +0400465 }
466
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -0300467 inject.tool.ordered_events = inject.sched_stat;
468
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900469 file.path = inject.input_name;
470 inject.session = perf_session__new(&file, true, &inject.tool);
471 if (inject.session == NULL)
Taeung Song52e028342014-09-24 10:33:37 +0900472 return -1;
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900473
Namhyung Kim0a7e6d12014-08-12 15:40:45 +0900474 if (symbol__init(&inject.session->header.env) < 0)
Tom Zanussi454c4072010-05-01 01:41:20 -0500475 return -1;
476
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900477 ret = __cmd_inject(&inject);
478
479 perf_session__delete(inject.session);
480
481 return ret;
Tom Zanussi454c4072010-05-01 01:41:20 -0500482}