blob: 423875c999b21208a5a6274d0fd47a2fb359ecd8 [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"
Tom Zanussi454c4072010-05-01 01:41:20 -050018
19#include "util/parse-options.h"
20
Andrew Vagin26a031e2012-08-07 16:56:04 +040021#include <linux/list.h>
22
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -030023struct perf_inject {
24 struct perf_tool tool;
25 bool build_ids;
Andrew Vagin26a031e2012-08-07 16:56:04 +040026 bool sched_stat;
Andrew Vagine558a5b2012-08-07 16:56:02 +040027 const char *input_name;
28 int pipe_output,
29 output;
30 u64 bytes_written;
Andrew Vagin26a031e2012-08-07 16:56:04 +040031 struct list_head samples;
32};
33
34struct event_entry {
35 struct list_head node;
36 u32 tid;
37 union perf_event event[0];
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -030038};
Tom Zanussi454c4072010-05-01 01:41:20 -050039
Andrew Vagine558a5b2012-08-07 16:56:02 +040040static int perf_event__repipe_synth(struct perf_tool *tool,
Adrian Hunter63c2c9f2013-07-04 16:20:20 +030041 union perf_event *event)
Tom Zanussi454c4072010-05-01 01:41:20 -050042{
Andrew Vagine558a5b2012-08-07 16:56:02 +040043 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
Tom Zanussi454c4072010-05-01 01:41:20 -050044 uint32_t size;
45 void *buf = event;
46
47 size = event->header.size;
48
49 while (size) {
Andrew Vagine558a5b2012-08-07 16:56:02 +040050 int ret = write(inject->output, buf, size);
Tom Zanussi454c4072010-05-01 01:41:20 -050051 if (ret < 0)
52 return -errno;
53
54 size -= ret;
55 buf += ret;
Andrew Vagine558a5b2012-08-07 16:56:02 +040056 inject->bytes_written += ret;
Tom Zanussi454c4072010-05-01 01:41:20 -050057 }
58
59 return 0;
60}
61
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020062static int perf_event__repipe_op2_synth(struct perf_tool *tool,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -020063 union perf_event *event,
Irina Tirdea1d037ca2012-09-11 01:15:03 +030064 struct perf_session *session
65 __maybe_unused)
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -020066{
Adrian Hunter63c2c9f2013-07-04 16:20:20 +030067 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -020068}
69
Adrian Hunter47c3d102013-07-04 16:20:21 +030070static int perf_event__repipe_attr(struct perf_tool *tool,
71 union perf_event *event,
72 struct perf_evlist **pevlist)
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -020073{
Stephane Eranian1a1ed1b2012-05-15 13:28:11 +020074 int ret;
Adrian Hunter47c3d102013-07-04 16:20:21 +030075
76 ret = perf_event__process_attr(tool, event, pevlist);
Stephane Eranian1a1ed1b2012-05-15 13:28:11 +020077 if (ret)
78 return ret;
79
Adrian Hunter47c3d102013-07-04 16:20:21 +030080 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -020081}
82
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020083static int perf_event__repipe(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -020084 union perf_event *event,
Irina Tirdea1d037ca2012-09-11 01:15:03 +030085 struct perf_sample *sample __maybe_unused,
Adrian Hunter63c2c9f2013-07-04 16:20:20 +030086 struct machine *machine __maybe_unused)
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -020087{
Adrian Hunter63c2c9f2013-07-04 16:20:20 +030088 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -020089}
90
Andrew Vagin26a031e2012-08-07 16:56:04 +040091typedef int (*inject_handler)(struct perf_tool *tool,
92 union perf_event *event,
93 struct perf_sample *sample,
94 struct perf_evsel *evsel,
95 struct machine *machine);
96
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020097static int perf_event__repipe_sample(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -020098 union perf_event *event,
Andrew Vagin26a031e2012-08-07 16:56:04 +040099 struct perf_sample *sample,
100 struct perf_evsel *evsel,
101 struct machine *machine)
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300102{
Andrew Vagin26a031e2012-08-07 16:56:04 +0400103 if (evsel->handler.func) {
104 inject_handler f = evsel->handler.func;
105 return f(tool, event, sample, evsel, machine);
106 }
107
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400108 build_id__mark_dso_hit(tool, event, sample, evsel, machine);
109
Adrian Hunter63c2c9f2013-07-04 16:20:20 +0300110 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300111}
112
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200113static int perf_event__repipe_mmap(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200114 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200115 struct perf_sample *sample,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200116 struct machine *machine)
Tom Zanussi454c4072010-05-01 01:41:20 -0500117{
118 int err;
119
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200120 err = perf_event__process_mmap(tool, event, sample, machine);
121 perf_event__repipe(tool, event, sample, machine);
Tom Zanussi454c4072010-05-01 01:41:20 -0500122
123 return err;
124}
125
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200126static int perf_event__repipe_mmap2(struct perf_tool *tool,
127 union perf_event *event,
128 struct perf_sample *sample,
129 struct machine *machine)
130{
131 int err;
132
133 err = perf_event__process_mmap2(tool, event, sample, machine);
134 perf_event__repipe(tool, event, sample, machine);
135
136 return err;
137}
138
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300139static int perf_event__repipe_fork(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200140 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200141 struct perf_sample *sample,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200142 struct machine *machine)
Tom Zanussi454c4072010-05-01 01:41:20 -0500143{
144 int err;
145
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300146 err = perf_event__process_fork(tool, event, sample, machine);
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200147 perf_event__repipe(tool, event, sample, machine);
Tom Zanussi454c4072010-05-01 01:41:20 -0500148
149 return err;
150}
151
Adrian Hunter47c3d102013-07-04 16:20:21 +0300152static int perf_event__repipe_tracing_data(struct perf_tool *tool,
153 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200154 struct perf_session *session)
Tom Zanussi454c4072010-05-01 01:41:20 -0500155{
156 int err;
157
Adrian Hunter47c3d102013-07-04 16:20:21 +0300158 perf_event__repipe_synth(tool, event);
159 err = perf_event__process_tracing_data(tool, event, session);
Tom Zanussi454c4072010-05-01 01:41:20 -0500160
161 return err;
162}
163
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300164static int dso__read_build_id(struct dso *self)
Tom Zanussi454c4072010-05-01 01:41:20 -0500165{
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300166 if (self->has_build_id)
167 return 0;
Tom Zanussi454c4072010-05-01 01:41:20 -0500168
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300169 if (filename__read_build_id(self->long_name, self->build_id,
170 sizeof(self->build_id)) > 0) {
171 self->has_build_id = true;
172 return 0;
Tom Zanussi454c4072010-05-01 01:41:20 -0500173 }
174
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300175 return -1;
176}
Tom Zanussi454c4072010-05-01 01:41:20 -0500177
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200178static int dso__inject_build_id(struct dso *self, struct perf_tool *tool,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200179 struct machine *machine)
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300180{
181 u16 misc = PERF_RECORD_MISC_USER;
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300182 int err;
Tom Zanussi454c4072010-05-01 01:41:20 -0500183
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300184 if (dso__read_build_id(self) < 0) {
185 pr_debug("no build_id found for %s\n", self->long_name);
186 return -1;
187 }
Tom Zanussi454c4072010-05-01 01:41:20 -0500188
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300189 if (self->kernel)
190 misc = PERF_RECORD_MISC_KERNEL;
191
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200192 err = perf_event__synthesize_build_id(tool, self, misc, perf_event__repipe,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200193 machine);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300194 if (err) {
195 pr_err("Can't synthesize build_id event for %s\n", self->long_name);
Tom Zanussi454c4072010-05-01 01:41:20 -0500196 return -1;
197 }
198
199 return 0;
200}
201
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200202static int perf_event__inject_buildid(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200203 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200204 struct perf_sample *sample,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300205 struct perf_evsel *evsel __maybe_unused,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200206 struct machine *machine)
Tom Zanussi454c4072010-05-01 01:41:20 -0500207{
208 struct addr_location al;
209 struct thread *thread;
210 u8 cpumode;
Tom Zanussi454c4072010-05-01 01:41:20 -0500211
212 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
213
Adrian Hunteref893252013-08-27 11:23:06 +0300214 thread = machine__findnew_thread(machine, sample->pid, sample->pid);
Tom Zanussi454c4072010-05-01 01:41:20 -0500215 if (thread == NULL) {
216 pr_err("problem processing %d event, skipping it.\n",
217 event->header.type);
Tom Zanussi454c4072010-05-01 01:41:20 -0500218 goto repipe;
219 }
220
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200221 thread__find_addr_map(thread, machine, cpumode, MAP__FUNCTION,
Adrian Hunteref893252013-08-27 11:23:06 +0300222 sample->ip, &al);
Tom Zanussi454c4072010-05-01 01:41:20 -0500223
224 if (al.map != NULL) {
225 if (!al.map->dso->hit) {
226 al.map->dso->hit = 1;
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300227 if (map__load(al.map, NULL) >= 0) {
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200228 dso__inject_build_id(al.map->dso, tool, machine);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300229 /*
230 * If this fails, too bad, let the other side
231 * account this as unresolved.
232 */
Namhyung Kim393be2e2012-08-06 13:41:21 +0900233 } else {
Namhyung Kim29a0fc92012-09-28 18:31:59 +0900234#ifdef LIBELF_SUPPORT
Tom Zanussi454c4072010-05-01 01:41:20 -0500235 pr_warning("no symbols found in %s, maybe "
236 "install a debug package?\n",
237 al.map->dso->long_name);
Namhyung Kim393be2e2012-08-06 13:41:21 +0900238#endif
239 }
Tom Zanussi454c4072010-05-01 01:41:20 -0500240 }
241 }
242
243repipe:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200244 perf_event__repipe(tool, event, sample, machine);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300245 return 0;
Tom Zanussi454c4072010-05-01 01:41:20 -0500246}
247
Andrew Vagin26a031e2012-08-07 16:56:04 +0400248static int perf_inject__sched_process_exit(struct perf_tool *tool,
249 union perf_event *event __maybe_unused,
250 struct perf_sample *sample,
251 struct perf_evsel *evsel __maybe_unused,
252 struct machine *machine __maybe_unused)
253{
254 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
255 struct event_entry *ent;
256
257 list_for_each_entry(ent, &inject->samples, node) {
258 if (sample->tid == ent->tid) {
259 list_del_init(&ent->node);
260 free(ent);
261 break;
262 }
263 }
264
265 return 0;
266}
267
268static int perf_inject__sched_switch(struct perf_tool *tool,
269 union perf_event *event,
270 struct perf_sample *sample,
271 struct perf_evsel *evsel,
272 struct machine *machine)
273{
274 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
275 struct event_entry *ent;
276
277 perf_inject__sched_process_exit(tool, event, sample, evsel, machine);
278
279 ent = malloc(event->header.size + sizeof(struct event_entry));
280 if (ent == NULL) {
281 color_fprintf(stderr, PERF_COLOR_RED,
282 "Not enough memory to process sched switch event!");
283 return -1;
284 }
285
286 ent->tid = sample->tid;
287 memcpy(&ent->event, event, event->header.size);
288 list_add(&ent->node, &inject->samples);
289 return 0;
290}
291
292static int perf_inject__sched_stat(struct perf_tool *tool,
293 union perf_event *event __maybe_unused,
294 struct perf_sample *sample,
295 struct perf_evsel *evsel,
296 struct machine *machine)
297{
298 struct event_entry *ent;
299 union perf_event *event_sw;
300 struct perf_sample sample_sw;
301 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
302 u32 pid = perf_evsel__intval(evsel, sample, "pid");
303
304 list_for_each_entry(ent, &inject->samples, node) {
305 if (pid == ent->tid)
306 goto found;
307 }
308
309 return 0;
310found:
311 event_sw = &ent->event[0];
312 perf_evsel__parse_sample(evsel, event_sw, &sample_sw);
313
314 sample_sw.period = sample->period;
315 sample_sw.time = sample->time;
316 perf_event__synthesize_sample(event_sw, evsel->attr.sample_type,
Adrian Hunterd03f2172013-08-27 11:23:11 +0300317 evsel->attr.sample_regs_user,
318 evsel->attr.read_format, &sample_sw,
319 false);
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400320 build_id__mark_dso_hit(tool, event_sw, &sample_sw, evsel, machine);
Andrew Vagin26a031e2012-08-07 16:56:04 +0400321 return perf_event__repipe(tool, event_sw, &sample_sw, machine);
322}
323
Tom Zanussi454c4072010-05-01 01:41:20 -0500324extern volatile int session_done;
325
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300326static void sig_handler(int sig __maybe_unused)
Tom Zanussi454c4072010-05-01 01:41:20 -0500327{
328 session_done = 1;
329}
330
Andrew Vagin26a031e2012-08-07 16:56:04 +0400331static int perf_evsel__check_stype(struct perf_evsel *evsel,
332 u64 sample_type, const char *sample_msg)
333{
334 struct perf_event_attr *attr = &evsel->attr;
335 const char *name = perf_evsel__name(evsel);
336
337 if (!(attr->sample_type & sample_type)) {
338 pr_err("Samples for %s event do not have %s attribute set.",
339 name, sample_msg);
340 return -EINVAL;
341 }
342
343 return 0;
344}
345
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300346static int __cmd_inject(struct perf_inject *inject)
Tom Zanussi454c4072010-05-01 01:41:20 -0500347{
348 struct perf_session *session;
349 int ret = -EINVAL;
350
351 signal(SIGINT, sig_handler);
352
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400353 if (inject->build_ids || inject->sched_stat) {
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300354 inject->tool.mmap = perf_event__repipe_mmap;
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200355 inject->tool.mmap2 = perf_event__repipe_mmap2;
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300356 inject->tool.fork = perf_event__repipe_fork;
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300357 inject->tool.tracing_data = perf_event__repipe_tracing_data;
Tom Zanussi454c4072010-05-01 01:41:20 -0500358 }
359
Andrew Vagine558a5b2012-08-07 16:56:02 +0400360 session = perf_session__new(inject->input_name, O_RDONLY, false, true, &inject->tool);
Tom Zanussi454c4072010-05-01 01:41:20 -0500361 if (session == NULL)
362 return -ENOMEM;
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
369 inject->tool.ordered_samples = true;
370
371 list_for_each_entry(evsel, &session->evlist->entries, node) {
372 const char *name = perf_evsel__name(evsel);
373
374 if (!strcmp(name, "sched:sched_switch")) {
375 if (perf_evsel__check_stype(evsel, PERF_SAMPLE_TID, "TID"))
376 return -EINVAL;
377
378 evsel->handler.func = perf_inject__sched_switch;
379 } else if (!strcmp(name, "sched:sched_process_exit"))
380 evsel->handler.func = perf_inject__sched_process_exit;
381 else if (!strncmp(name, "sched:sched_stat_", 17))
382 evsel->handler.func = perf_inject__sched_stat;
383 }
384 }
385
Andrew Vagine558a5b2012-08-07 16:56:02 +0400386 if (!inject->pipe_output)
387 lseek(inject->output, session->header.data_offset, SEEK_SET);
388
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300389 ret = perf_session__process_events(session, &inject->tool);
Tom Zanussi454c4072010-05-01 01:41:20 -0500390
Andrew Vagine558a5b2012-08-07 16:56:02 +0400391 if (!inject->pipe_output) {
392 session->header.data_size = inject->bytes_written;
393 perf_session__write_header(session, session->evlist, inject->output, true);
394 }
395
Tom Zanussi454c4072010-05-01 01:41:20 -0500396 perf_session__delete(session);
397
398 return ret;
399}
400
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300401int cmd_inject(int argc, const char **argv, const char *prefix __maybe_unused)
Tom Zanussi454c4072010-05-01 01:41:20 -0500402{
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300403 struct perf_inject inject = {
404 .tool = {
405 .sample = perf_event__repipe_sample,
406 .mmap = perf_event__repipe,
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200407 .mmap2 = perf_event__repipe,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300408 .comm = perf_event__repipe,
409 .fork = perf_event__repipe,
410 .exit = perf_event__repipe,
411 .lost = perf_event__repipe,
412 .read = perf_event__repipe_sample,
413 .throttle = perf_event__repipe,
414 .unthrottle = perf_event__repipe,
415 .attr = perf_event__repipe_attr,
Adrian Hunter47c3d102013-07-04 16:20:21 +0300416 .tracing_data = perf_event__repipe_op2_synth,
Adrian Huntera609bda2013-07-04 16:20:22 +0300417 .finished_round = perf_event__repipe_op2_synth,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300418 .build_id = perf_event__repipe_op2_synth,
419 },
Andrew Vagine558a5b2012-08-07 16:56:02 +0400420 .input_name = "-",
Andrew Vagin26a031e2012-08-07 16:56:04 +0400421 .samples = LIST_HEAD_INIT(inject.samples),
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300422 };
Andrew Vagine558a5b2012-08-07 16:56:02 +0400423 const char *output_name = "-";
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300424 const struct option options[] = {
425 OPT_BOOLEAN('b', "build-ids", &inject.build_ids,
426 "Inject build-ids into the output stream"),
Andrew Vagine558a5b2012-08-07 16:56:02 +0400427 OPT_STRING('i', "input", &inject.input_name, "file",
428 "input file name"),
429 OPT_STRING('o', "output", &output_name, "file",
430 "output file name"),
Andrew Vagin26a031e2012-08-07 16:56:04 +0400431 OPT_BOOLEAN('s', "sched-stat", &inject.sched_stat,
432 "Merge sched-stat and sched-switch for getting events "
433 "where and how long tasks slept"),
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300434 OPT_INCR('v', "verbose", &verbose,
435 "be more verbose (show build ids, etc)"),
436 OPT_END()
437 };
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300438 const char * const inject_usage[] = {
439 "perf inject [<options>]",
440 NULL
441 };
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300442
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300443 argc = parse_options(argc, argv, options, inject_usage, 0);
Tom Zanussi454c4072010-05-01 01:41:20 -0500444
445 /*
446 * Any (unrecognized) arguments left?
447 */
448 if (argc)
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300449 usage_with_options(inject_usage, options);
Tom Zanussi454c4072010-05-01 01:41:20 -0500450
Andrew Vagine558a5b2012-08-07 16:56:02 +0400451 if (!strcmp(output_name, "-")) {
452 inject.pipe_output = 1;
453 inject.output = STDOUT_FILENO;
454 } else {
455 inject.output = open(output_name, O_CREAT | O_WRONLY | O_TRUNC,
456 S_IRUSR | S_IWUSR);
457 if (inject.output < 0) {
458 perror("failed to create output file");
459 return -1;
460 }
461 }
462
Tom Zanussi454c4072010-05-01 01:41:20 -0500463 if (symbol__init() < 0)
464 return -1;
465
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300466 return __cmd_inject(&inject);
Tom Zanussi454c4072010-05-01 01:41:20 -0500467}