blob: 84ad6abe42586a3bcb6d04aa5696cae6bf59b043 [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,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -020041 union perf_event *event,
Irina Tirdea1d037ca2012-09-11 01:15:03 +030042 struct machine *machine __maybe_unused)
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{
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020068 return perf_event__repipe_synth(tool, event, NULL);
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -020069}
70
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020071static int perf_event__repipe_event_type_synth(struct perf_tool *tool,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -020072 union perf_event *event)
73{
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020074 return perf_event__repipe_synth(tool, event, NULL);
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -020075}
76
77static int perf_event__repipe_tracing_data_synth(union perf_event *event,
Irina Tirdea1d037ca2012-09-11 01:15:03 +030078 struct perf_session *session
79 __maybe_unused)
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -020080{
81 return perf_event__repipe_synth(NULL, event, NULL);
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -020082}
83
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -020084static int perf_event__repipe_attr(union perf_event *event,
Irina Tirdea1d037ca2012-09-11 01:15:03 +030085 struct perf_evlist **pevlist __maybe_unused)
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -020086{
Stephane Eranian1a1ed1b2012-05-15 13:28:11 +020087 int ret;
88 ret = perf_event__process_attr(event, pevlist);
89 if (ret)
90 return ret;
91
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -020092 return perf_event__repipe_synth(NULL, event, NULL);
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -020093}
94
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020095static int perf_event__repipe(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -020096 union perf_event *event,
Irina Tirdea1d037ca2012-09-11 01:15:03 +030097 struct perf_sample *sample __maybe_unused,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -020098 struct machine *machine)
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -020099{
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200100 return perf_event__repipe_synth(tool, event, machine);
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -0200101}
102
Andrew Vagin26a031e2012-08-07 16:56:04 +0400103typedef int (*inject_handler)(struct perf_tool *tool,
104 union perf_event *event,
105 struct perf_sample *sample,
106 struct perf_evsel *evsel,
107 struct machine *machine);
108
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200109static int perf_event__repipe_sample(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200110 union perf_event *event,
Andrew Vagin26a031e2012-08-07 16:56:04 +0400111 struct perf_sample *sample,
112 struct perf_evsel *evsel,
113 struct machine *machine)
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300114{
Andrew Vagin26a031e2012-08-07 16:56:04 +0400115 if (evsel->handler.func) {
116 inject_handler f = evsel->handler.func;
117 return f(tool, event, sample, evsel, machine);
118 }
119
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400120 build_id__mark_dso_hit(tool, event, sample, evsel, machine);
121
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200122 return perf_event__repipe_synth(tool, event, machine);
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300123}
124
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200125static int perf_event__repipe_mmap(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200126 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200127 struct perf_sample *sample,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200128 struct machine *machine)
Tom Zanussi454c4072010-05-01 01:41:20 -0500129{
130 int err;
131
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200132 err = perf_event__process_mmap(tool, event, sample, machine);
133 perf_event__repipe(tool, event, sample, machine);
Tom Zanussi454c4072010-05-01 01:41:20 -0500134
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
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200151static int perf_event__repipe_tracing_data(union perf_event *event,
152 struct perf_session *session)
Tom Zanussi454c4072010-05-01 01:41:20 -0500153{
154 int err;
155
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200156 perf_event__repipe_synth(NULL, event, NULL);
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200157 err = perf_event__process_tracing_data(event, session);
Tom Zanussi454c4072010-05-01 01:41:20 -0500158
159 return err;
160}
161
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300162static int dso__read_build_id(struct dso *self)
Tom Zanussi454c4072010-05-01 01:41:20 -0500163{
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300164 if (self->has_build_id)
165 return 0;
Tom Zanussi454c4072010-05-01 01:41:20 -0500166
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300167 if (filename__read_build_id(self->long_name, self->build_id,
168 sizeof(self->build_id)) > 0) {
169 self->has_build_id = true;
170 return 0;
Tom Zanussi454c4072010-05-01 01:41:20 -0500171 }
172
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300173 return -1;
174}
Tom Zanussi454c4072010-05-01 01:41:20 -0500175
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200176static int dso__inject_build_id(struct dso *self, struct perf_tool *tool,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200177 struct machine *machine)
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300178{
179 u16 misc = PERF_RECORD_MISC_USER;
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300180 int err;
Tom Zanussi454c4072010-05-01 01:41:20 -0500181
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300182 if (dso__read_build_id(self) < 0) {
183 pr_debug("no build_id found for %s\n", self->long_name);
184 return -1;
185 }
Tom Zanussi454c4072010-05-01 01:41:20 -0500186
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300187 if (self->kernel)
188 misc = PERF_RECORD_MISC_KERNEL;
189
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200190 err = perf_event__synthesize_build_id(tool, self, misc, perf_event__repipe,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200191 machine);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300192 if (err) {
193 pr_err("Can't synthesize build_id event for %s\n", self->long_name);
Tom Zanussi454c4072010-05-01 01:41:20 -0500194 return -1;
195 }
196
197 return 0;
198}
199
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200200static int perf_event__inject_buildid(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200201 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200202 struct perf_sample *sample,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300203 struct perf_evsel *evsel __maybe_unused,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200204 struct machine *machine)
Tom Zanussi454c4072010-05-01 01:41:20 -0500205{
206 struct addr_location al;
207 struct thread *thread;
208 u8 cpumode;
Tom Zanussi454c4072010-05-01 01:41:20 -0500209
210 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
211
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200212 thread = machine__findnew_thread(machine, event->ip.pid);
Tom Zanussi454c4072010-05-01 01:41:20 -0500213 if (thread == NULL) {
214 pr_err("problem processing %d event, skipping it.\n",
215 event->header.type);
Tom Zanussi454c4072010-05-01 01:41:20 -0500216 goto repipe;
217 }
218
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200219 thread__find_addr_map(thread, machine, cpumode, MAP__FUNCTION,
220 event->ip.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 {
Namhyung Kim29a0fc92012-09-28 18:31:59 +0900232#ifdef 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,
315 &sample_sw, false);
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400316 build_id__mark_dso_hit(tool, event_sw, &sample_sw, evsel, machine);
Andrew Vagin26a031e2012-08-07 16:56:04 +0400317 return perf_event__repipe(tool, event_sw, &sample_sw, machine);
318}
319
Tom Zanussi454c4072010-05-01 01:41:20 -0500320extern volatile int session_done;
321
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300322static void sig_handler(int sig __maybe_unused)
Tom Zanussi454c4072010-05-01 01:41:20 -0500323{
324 session_done = 1;
325}
326
Andrew Vagin26a031e2012-08-07 16:56:04 +0400327static int perf_evsel__check_stype(struct perf_evsel *evsel,
328 u64 sample_type, const char *sample_msg)
329{
330 struct perf_event_attr *attr = &evsel->attr;
331 const char *name = perf_evsel__name(evsel);
332
333 if (!(attr->sample_type & sample_type)) {
334 pr_err("Samples for %s event do not have %s attribute set.",
335 name, sample_msg);
336 return -EINVAL;
337 }
338
339 return 0;
340}
341
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300342static int __cmd_inject(struct perf_inject *inject)
Tom Zanussi454c4072010-05-01 01:41:20 -0500343{
344 struct perf_session *session;
345 int ret = -EINVAL;
346
347 signal(SIGINT, sig_handler);
348
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400349 if (inject->build_ids || inject->sched_stat) {
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300350 inject->tool.mmap = perf_event__repipe_mmap;
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300351 inject->tool.fork = perf_event__repipe_fork;
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300352 inject->tool.tracing_data = perf_event__repipe_tracing_data;
Tom Zanussi454c4072010-05-01 01:41:20 -0500353 }
354
Andrew Vagine558a5b2012-08-07 16:56:02 +0400355 session = perf_session__new(inject->input_name, O_RDONLY, false, true, &inject->tool);
Tom Zanussi454c4072010-05-01 01:41:20 -0500356 if (session == NULL)
357 return -ENOMEM;
358
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400359 if (inject->build_ids) {
360 inject->tool.sample = perf_event__inject_buildid;
361 } else if (inject->sched_stat) {
Andrew Vagin26a031e2012-08-07 16:56:04 +0400362 struct perf_evsel *evsel;
363
364 inject->tool.ordered_samples = true;
365
366 list_for_each_entry(evsel, &session->evlist->entries, node) {
367 const char *name = perf_evsel__name(evsel);
368
369 if (!strcmp(name, "sched:sched_switch")) {
370 if (perf_evsel__check_stype(evsel, PERF_SAMPLE_TID, "TID"))
371 return -EINVAL;
372
373 evsel->handler.func = perf_inject__sched_switch;
374 } else if (!strcmp(name, "sched:sched_process_exit"))
375 evsel->handler.func = perf_inject__sched_process_exit;
376 else if (!strncmp(name, "sched:sched_stat_", 17))
377 evsel->handler.func = perf_inject__sched_stat;
378 }
379 }
380
Andrew Vagine558a5b2012-08-07 16:56:02 +0400381 if (!inject->pipe_output)
382 lseek(inject->output, session->header.data_offset, SEEK_SET);
383
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300384 ret = perf_session__process_events(session, &inject->tool);
Tom Zanussi454c4072010-05-01 01:41:20 -0500385
Andrew Vagine558a5b2012-08-07 16:56:02 +0400386 if (!inject->pipe_output) {
387 session->header.data_size = inject->bytes_written;
388 perf_session__write_header(session, session->evlist, inject->output, true);
389 }
390
Tom Zanussi454c4072010-05-01 01:41:20 -0500391 perf_session__delete(session);
392
393 return ret;
394}
395
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300396int cmd_inject(int argc, const char **argv, const char *prefix __maybe_unused)
Tom Zanussi454c4072010-05-01 01:41:20 -0500397{
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300398 struct perf_inject inject = {
399 .tool = {
400 .sample = perf_event__repipe_sample,
401 .mmap = perf_event__repipe,
402 .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,
410 .event_type = perf_event__repipe_event_type_synth,
411 .tracing_data = perf_event__repipe_tracing_data_synth,
412 .build_id = perf_event__repipe_op2_synth,
413 },
Andrew Vagine558a5b2012-08-07 16:56:02 +0400414 .input_name = "-",
Andrew Vagin26a031e2012-08-07 16:56:04 +0400415 .samples = LIST_HEAD_INIT(inject.samples),
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300416 };
Andrew Vagine558a5b2012-08-07 16:56:02 +0400417 const char *output_name = "-";
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300418 const struct option options[] = {
419 OPT_BOOLEAN('b', "build-ids", &inject.build_ids,
420 "Inject build-ids into the output stream"),
Andrew Vagine558a5b2012-08-07 16:56:02 +0400421 OPT_STRING('i', "input", &inject.input_name, "file",
422 "input file name"),
423 OPT_STRING('o', "output", &output_name, "file",
424 "output file name"),
Andrew Vagin26a031e2012-08-07 16:56:04 +0400425 OPT_BOOLEAN('s', "sched-stat", &inject.sched_stat,
426 "Merge sched-stat and sched-switch for getting events "
427 "where and how long tasks slept"),
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300428 OPT_INCR('v', "verbose", &verbose,
429 "be more verbose (show build ids, etc)"),
430 OPT_END()
431 };
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300432 const char * const inject_usage[] = {
433 "perf inject [<options>]",
434 NULL
435 };
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300436
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300437 argc = parse_options(argc, argv, options, inject_usage, 0);
Tom Zanussi454c4072010-05-01 01:41:20 -0500438
439 /*
440 * Any (unrecognized) arguments left?
441 */
442 if (argc)
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300443 usage_with_options(inject_usage, options);
Tom Zanussi454c4072010-05-01 01:41:20 -0500444
Andrew Vagine558a5b2012-08-07 16:56:02 +0400445 if (!strcmp(output_name, "-")) {
446 inject.pipe_output = 1;
447 inject.output = STDOUT_FILENO;
448 } else {
449 inject.output = open(output_name, O_CREAT | O_WRONLY | O_TRUNC,
450 S_IRUSR | S_IWUSR);
451 if (inject.output < 0) {
452 perror("failed to create output file");
453 return -1;
454 }
455 }
456
Tom Zanussi454c4072010-05-01 01:41:20 -0500457 if (symbol__init() < 0)
458 return -1;
459
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300460 return __cmd_inject(&inject);
Tom Zanussi454c4072010-05-01 01:41:20 -0500461}