blob: eb1a5941912b218b00553530b20dfc479175e730 [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 {
25 struct perf_tool tool;
26 bool build_ids;
Andrew Vagin26a031e2012-08-07 16:56:04 +040027 bool sched_stat;
Andrew Vagine558a5b2012-08-07 16:56:02 +040028 const char *input_name;
29 int pipe_output,
30 output;
31 u64 bytes_written;
Andrew Vagin26a031e2012-08-07 16:56:04 +040032 struct list_head samples;
33};
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);
Tom Zanussi454c4072010-05-01 01:41:20 -050045 uint32_t size;
46 void *buf = event;
47
48 size = event->header.size;
49
50 while (size) {
Andrew Vagine558a5b2012-08-07 16:56:02 +040051 int ret = write(inject->output, buf, size);
Tom Zanussi454c4072010-05-01 01:41:20 -050052 if (ret < 0)
53 return -errno;
54
55 size -= ret;
56 buf += ret;
Andrew Vagine558a5b2012-08-07 16:56:02 +040057 inject->bytes_written += ret;
Tom Zanussi454c4072010-05-01 01:41:20 -050058 }
59
60 return 0;
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{
Stephane Eranian1a1ed1b2012-05-15 13:28:11 +020075 int ret;
Adrian Hunter47c3d102013-07-04 16:20:21 +030076
77 ret = perf_event__process_attr(tool, event, pevlist);
Stephane Eranian1a1ed1b2012-05-15 13:28:11 +020078 if (ret)
79 return ret;
80
Adrian Hunter47c3d102013-07-04 16:20:21 +030081 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -020082}
83
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020084static int perf_event__repipe(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -020085 union perf_event *event,
Irina Tirdea1d037ca2012-09-11 01:15:03 +030086 struct perf_sample *sample __maybe_unused,
Adrian Hunter63c2c9f2013-07-04 16:20:20 +030087 struct machine *machine __maybe_unused)
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -020088{
Adrian Hunter63c2c9f2013-07-04 16:20:20 +030089 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -020090}
91
Andrew Vagin26a031e2012-08-07 16:56:04 +040092typedef int (*inject_handler)(struct perf_tool *tool,
93 union perf_event *event,
94 struct perf_sample *sample,
95 struct perf_evsel *evsel,
96 struct machine *machine);
97
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020098static int perf_event__repipe_sample(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -020099 union perf_event *event,
Andrew Vagin26a031e2012-08-07 16:56:04 +0400100 struct perf_sample *sample,
101 struct perf_evsel *evsel,
102 struct machine *machine)
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300103{
Andrew Vagin26a031e2012-08-07 16:56:04 +0400104 if (evsel->handler.func) {
105 inject_handler f = evsel->handler.func;
106 return f(tool, event, sample, evsel, machine);
107 }
108
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400109 build_id__mark_dso_hit(tool, event, sample, evsel, machine);
110
Adrian Hunter63c2c9f2013-07-04 16:20:20 +0300111 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300112}
113
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200114static int perf_event__repipe_mmap(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200115 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200116 struct perf_sample *sample,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200117 struct machine *machine)
Tom Zanussi454c4072010-05-01 01:41:20 -0500118{
119 int err;
120
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200121 err = perf_event__process_mmap(tool, event, sample, machine);
122 perf_event__repipe(tool, event, sample, machine);
Tom Zanussi454c4072010-05-01 01:41:20 -0500123
124 return err;
125}
126
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200127static int perf_event__repipe_mmap2(struct perf_tool *tool,
128 union perf_event *event,
129 struct perf_sample *sample,
130 struct machine *machine)
131{
132 int err;
133
134 err = perf_event__process_mmap2(tool, event, sample, machine);
135 perf_event__repipe(tool, event, sample, machine);
136
137 return err;
138}
139
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300140static int perf_event__repipe_fork(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200141 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200142 struct perf_sample *sample,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200143 struct machine *machine)
Tom Zanussi454c4072010-05-01 01:41:20 -0500144{
145 int err;
146
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300147 err = perf_event__process_fork(tool, event, sample, machine);
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200148 perf_event__repipe(tool, event, sample, machine);
Tom Zanussi454c4072010-05-01 01:41:20 -0500149
150 return err;
151}
152
Adrian Hunter47c3d102013-07-04 16:20:21 +0300153static int perf_event__repipe_tracing_data(struct perf_tool *tool,
154 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200155 struct perf_session *session)
Tom Zanussi454c4072010-05-01 01:41:20 -0500156{
157 int err;
158
Adrian Hunter47c3d102013-07-04 16:20:21 +0300159 perf_event__repipe_synth(tool, event);
160 err = perf_event__process_tracing_data(tool, event, session);
Tom Zanussi454c4072010-05-01 01:41:20 -0500161
162 return err;
163}
164
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300165static int dso__read_build_id(struct dso *dso)
Tom Zanussi454c4072010-05-01 01:41:20 -0500166{
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300167 if (dso->has_build_id)
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300168 return 0;
Tom Zanussi454c4072010-05-01 01:41:20 -0500169
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300170 if (filename__read_build_id(dso->long_name, dso->build_id,
171 sizeof(dso->build_id)) > 0) {
172 dso->has_build_id = true;
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300173 return 0;
Tom Zanussi454c4072010-05-01 01:41:20 -0500174 }
175
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300176 return -1;
177}
Tom Zanussi454c4072010-05-01 01:41:20 -0500178
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300179static int dso__inject_build_id(struct dso *dso, struct perf_tool *tool,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200180 struct machine *machine)
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300181{
182 u16 misc = PERF_RECORD_MISC_USER;
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300183 int err;
Tom Zanussi454c4072010-05-01 01:41:20 -0500184
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300185 if (dso__read_build_id(dso) < 0) {
186 pr_debug("no build_id found for %s\n", dso->long_name);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300187 return -1;
188 }
Tom Zanussi454c4072010-05-01 01:41:20 -0500189
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300190 if (dso->kernel)
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300191 misc = PERF_RECORD_MISC_KERNEL;
192
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300193 err = perf_event__synthesize_build_id(tool, dso, misc, perf_event__repipe,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200194 machine);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300195 if (err) {
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300196 pr_err("Can't synthesize build_id event for %s\n", dso->long_name);
Tom Zanussi454c4072010-05-01 01:41:20 -0500197 return -1;
198 }
199
200 return 0;
201}
202
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200203static int perf_event__inject_buildid(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200204 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200205 struct perf_sample *sample,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300206 struct perf_evsel *evsel __maybe_unused,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200207 struct machine *machine)
Tom Zanussi454c4072010-05-01 01:41:20 -0500208{
209 struct addr_location al;
210 struct thread *thread;
211 u8 cpumode;
Tom Zanussi454c4072010-05-01 01:41:20 -0500212
213 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
214
Adrian Hunteref893252013-08-27 11:23:06 +0300215 thread = machine__findnew_thread(machine, sample->pid, sample->pid);
Tom Zanussi454c4072010-05-01 01:41:20 -0500216 if (thread == NULL) {
217 pr_err("problem processing %d event, skipping it.\n",
218 event->header.type);
Tom Zanussi454c4072010-05-01 01:41:20 -0500219 goto repipe;
220 }
221
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200222 thread__find_addr_map(thread, machine, cpumode, MAP__FUNCTION,
Adrian Hunteref893252013-08-27 11:23:06 +0300223 sample->ip, &al);
Tom Zanussi454c4072010-05-01 01:41:20 -0500224
225 if (al.map != NULL) {
226 if (!al.map->dso->hit) {
227 al.map->dso->hit = 1;
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300228 if (map__load(al.map, NULL) >= 0) {
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200229 dso__inject_build_id(al.map->dso, tool, machine);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300230 /*
231 * If this fails, too bad, let the other side
232 * account this as unresolved.
233 */
Namhyung Kim393be2e2012-08-06 13:41:21 +0900234 } else {
Ingo Molnar89fe8082013-09-30 12:07:11 +0200235#ifdef HAVE_LIBELF_SUPPORT
Tom Zanussi454c4072010-05-01 01:41:20 -0500236 pr_warning("no symbols found in %s, maybe "
237 "install a debug package?\n",
238 al.map->dso->long_name);
Namhyung Kim393be2e2012-08-06 13:41:21 +0900239#endif
240 }
Tom Zanussi454c4072010-05-01 01:41:20 -0500241 }
242 }
243
244repipe:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200245 perf_event__repipe(tool, event, sample, machine);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300246 return 0;
Tom Zanussi454c4072010-05-01 01:41:20 -0500247}
248
Andrew Vagin26a031e2012-08-07 16:56:04 +0400249static int perf_inject__sched_process_exit(struct perf_tool *tool,
250 union perf_event *event __maybe_unused,
251 struct perf_sample *sample,
252 struct perf_evsel *evsel __maybe_unused,
253 struct machine *machine __maybe_unused)
254{
255 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
256 struct event_entry *ent;
257
258 list_for_each_entry(ent, &inject->samples, node) {
259 if (sample->tid == ent->tid) {
260 list_del_init(&ent->node);
261 free(ent);
262 break;
263 }
264 }
265
266 return 0;
267}
268
269static int perf_inject__sched_switch(struct perf_tool *tool,
270 union perf_event *event,
271 struct perf_sample *sample,
272 struct perf_evsel *evsel,
273 struct machine *machine)
274{
275 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
276 struct event_entry *ent;
277
278 perf_inject__sched_process_exit(tool, event, sample, evsel, machine);
279
280 ent = malloc(event->header.size + sizeof(struct event_entry));
281 if (ent == NULL) {
282 color_fprintf(stderr, PERF_COLOR_RED,
283 "Not enough memory to process sched switch event!");
284 return -1;
285 }
286
287 ent->tid = sample->tid;
288 memcpy(&ent->event, event, event->header.size);
289 list_add(&ent->node, &inject->samples);
290 return 0;
291}
292
293static int perf_inject__sched_stat(struct perf_tool *tool,
294 union perf_event *event __maybe_unused,
295 struct perf_sample *sample,
296 struct perf_evsel *evsel,
297 struct machine *machine)
298{
299 struct event_entry *ent;
300 union perf_event *event_sw;
301 struct perf_sample sample_sw;
302 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
303 u32 pid = perf_evsel__intval(evsel, sample, "pid");
304
305 list_for_each_entry(ent, &inject->samples, node) {
306 if (pid == ent->tid)
307 goto found;
308 }
309
310 return 0;
311found:
312 event_sw = &ent->event[0];
313 perf_evsel__parse_sample(evsel, event_sw, &sample_sw);
314
315 sample_sw.period = sample->period;
316 sample_sw.time = sample->time;
317 perf_event__synthesize_sample(event_sw, evsel->attr.sample_type,
Adrian Hunterd03f2172013-08-27 11:23:11 +0300318 evsel->attr.sample_regs_user,
319 evsel->attr.read_format, &sample_sw,
320 false);
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400321 build_id__mark_dso_hit(tool, event_sw, &sample_sw, evsel, machine);
Andrew Vagin26a031e2012-08-07 16:56:04 +0400322 return perf_event__repipe(tool, event_sw, &sample_sw, machine);
323}
324
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300325static void sig_handler(int sig __maybe_unused)
Tom Zanussi454c4072010-05-01 01:41:20 -0500326{
327 session_done = 1;
328}
329
Andrew Vagin26a031e2012-08-07 16:56:04 +0400330static int perf_evsel__check_stype(struct perf_evsel *evsel,
331 u64 sample_type, const char *sample_msg)
332{
333 struct perf_event_attr *attr = &evsel->attr;
334 const char *name = perf_evsel__name(evsel);
335
336 if (!(attr->sample_type & sample_type)) {
337 pr_err("Samples for %s event do not have %s attribute set.",
338 name, sample_msg);
339 return -EINVAL;
340 }
341
342 return 0;
343}
344
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300345static int __cmd_inject(struct perf_inject *inject)
Tom Zanussi454c4072010-05-01 01:41:20 -0500346{
347 struct perf_session *session;
348 int ret = -EINVAL;
Jiri Olsaf5fc1412013-10-15 16:27:32 +0200349 struct perf_data_file file = {
350 .path = inject->input_name,
351 .mode = PERF_DATA_MODE_READ,
352 };
Tom Zanussi454c4072010-05-01 01:41:20 -0500353
354 signal(SIGINT, sig_handler);
355
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400356 if (inject->build_ids || inject->sched_stat) {
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300357 inject->tool.mmap = perf_event__repipe_mmap;
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200358 inject->tool.mmap2 = perf_event__repipe_mmap2;
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300359 inject->tool.fork = perf_event__repipe_fork;
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300360 inject->tool.tracing_data = perf_event__repipe_tracing_data;
Tom Zanussi454c4072010-05-01 01:41:20 -0500361 }
362
Jiri Olsaf5fc1412013-10-15 16:27:32 +0200363 session = perf_session__new(&file, true, &inject->tool);
Tom Zanussi454c4072010-05-01 01:41:20 -0500364 if (session == NULL)
365 return -ENOMEM;
366
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400367 if (inject->build_ids) {
368 inject->tool.sample = perf_event__inject_buildid;
369 } else if (inject->sched_stat) {
Andrew Vagin26a031e2012-08-07 16:56:04 +0400370 struct perf_evsel *evsel;
371
372 inject->tool.ordered_samples = true;
373
374 list_for_each_entry(evsel, &session->evlist->entries, node) {
375 const char *name = perf_evsel__name(evsel);
376
377 if (!strcmp(name, "sched:sched_switch")) {
378 if (perf_evsel__check_stype(evsel, PERF_SAMPLE_TID, "TID"))
379 return -EINVAL;
380
381 evsel->handler.func = perf_inject__sched_switch;
382 } else if (!strcmp(name, "sched:sched_process_exit"))
383 evsel->handler.func = perf_inject__sched_process_exit;
384 else if (!strncmp(name, "sched:sched_stat_", 17))
385 evsel->handler.func = perf_inject__sched_stat;
386 }
387 }
388
Andrew Vagine558a5b2012-08-07 16:56:02 +0400389 if (!inject->pipe_output)
390 lseek(inject->output, session->header.data_offset, SEEK_SET);
391
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300392 ret = perf_session__process_events(session, &inject->tool);
Tom Zanussi454c4072010-05-01 01:41:20 -0500393
Andrew Vagine558a5b2012-08-07 16:56:02 +0400394 if (!inject->pipe_output) {
395 session->header.data_size = inject->bytes_written;
396 perf_session__write_header(session, session->evlist, inject->output, true);
397 }
398
Tom Zanussi454c4072010-05-01 01:41:20 -0500399 perf_session__delete(session);
400
401 return ret;
402}
403
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300404int cmd_inject(int argc, const char **argv, const char *prefix __maybe_unused)
Tom Zanussi454c4072010-05-01 01:41:20 -0500405{
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300406 struct perf_inject inject = {
407 .tool = {
408 .sample = perf_event__repipe_sample,
409 .mmap = perf_event__repipe,
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200410 .mmap2 = perf_event__repipe,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300411 .comm = perf_event__repipe,
412 .fork = perf_event__repipe,
413 .exit = perf_event__repipe,
414 .lost = perf_event__repipe,
415 .read = perf_event__repipe_sample,
416 .throttle = perf_event__repipe,
417 .unthrottle = perf_event__repipe,
418 .attr = perf_event__repipe_attr,
Adrian Hunter47c3d102013-07-04 16:20:21 +0300419 .tracing_data = perf_event__repipe_op2_synth,
Adrian Huntera609bda2013-07-04 16:20:22 +0300420 .finished_round = perf_event__repipe_op2_synth,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300421 .build_id = perf_event__repipe_op2_synth,
422 },
Andrew Vagine558a5b2012-08-07 16:56:02 +0400423 .input_name = "-",
Andrew Vagin26a031e2012-08-07 16:56:04 +0400424 .samples = LIST_HEAD_INIT(inject.samples),
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300425 };
Andrew Vagine558a5b2012-08-07 16:56:02 +0400426 const char *output_name = "-";
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"),
432 OPT_STRING('o', "output", &output_name, "file",
433 "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)"),
439 OPT_END()
440 };
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300441 const char * const inject_usage[] = {
442 "perf inject [<options>]",
443 NULL
444 };
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300445
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300446 argc = parse_options(argc, argv, options, inject_usage, 0);
Tom Zanussi454c4072010-05-01 01:41:20 -0500447
448 /*
449 * Any (unrecognized) arguments left?
450 */
451 if (argc)
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300452 usage_with_options(inject_usage, options);
Tom Zanussi454c4072010-05-01 01:41:20 -0500453
Andrew Vagine558a5b2012-08-07 16:56:02 +0400454 if (!strcmp(output_name, "-")) {
455 inject.pipe_output = 1;
456 inject.output = STDOUT_FILENO;
457 } else {
458 inject.output = open(output_name, O_CREAT | O_WRONLY | O_TRUNC,
459 S_IRUSR | S_IWUSR);
460 if (inject.output < 0) {
461 perror("failed to create output file");
462 return -1;
463 }
464 }
465
Tom Zanussi454c4072010-05-01 01:41:20 -0500466 if (symbol__init() < 0)
467 return -1;
468
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300469 return __cmd_inject(&inject);
Tom Zanussi454c4072010-05-01 01:41:20 -0500470}