blob: c943513d06be4c63cb9074553aa63f9e0298c034 [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
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020070static int perf_event__repipe_event_type_synth(struct perf_tool *tool,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -020071 union perf_event *event)
72{
Adrian Hunter63c2c9f2013-07-04 16:20:20 +030073 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -020074}
75
Adrian Hunter47c3d102013-07-04 16:20:21 +030076static int perf_event__repipe_attr(struct perf_tool *tool,
77 union perf_event *event,
78 struct perf_evlist **pevlist)
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -020079{
Stephane Eranian1a1ed1b2012-05-15 13:28:11 +020080 int ret;
Adrian Hunter47c3d102013-07-04 16:20:21 +030081
82 ret = perf_event__process_attr(tool, event, pevlist);
Stephane Eranian1a1ed1b2012-05-15 13:28:11 +020083 if (ret)
84 return ret;
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{
Andrew Vagin26a031e2012-08-07 16:56:04 +0400109 if (evsel->handler.func) {
110 inject_handler f = evsel->handler.func;
111 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
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300132static int perf_event__repipe_fork(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200133 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200134 struct perf_sample *sample,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200135 struct machine *machine)
Tom Zanussi454c4072010-05-01 01:41:20 -0500136{
137 int err;
138
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300139 err = perf_event__process_fork(tool, event, sample, machine);
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200140 perf_event__repipe(tool, event, sample, machine);
Tom Zanussi454c4072010-05-01 01:41:20 -0500141
142 return err;
143}
144
Adrian Hunter47c3d102013-07-04 16:20:21 +0300145static int perf_event__repipe_tracing_data(struct perf_tool *tool,
146 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200147 struct perf_session *session)
Tom Zanussi454c4072010-05-01 01:41:20 -0500148{
149 int err;
150
Adrian Hunter47c3d102013-07-04 16:20:21 +0300151 perf_event__repipe_synth(tool, event);
152 err = perf_event__process_tracing_data(tool, event, session);
Tom Zanussi454c4072010-05-01 01:41:20 -0500153
154 return err;
155}
156
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300157static int dso__read_build_id(struct dso *self)
Tom Zanussi454c4072010-05-01 01:41:20 -0500158{
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300159 if (self->has_build_id)
160 return 0;
Tom Zanussi454c4072010-05-01 01:41:20 -0500161
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300162 if (filename__read_build_id(self->long_name, self->build_id,
163 sizeof(self->build_id)) > 0) {
164 self->has_build_id = true;
165 return 0;
Tom Zanussi454c4072010-05-01 01:41:20 -0500166 }
167
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300168 return -1;
169}
Tom Zanussi454c4072010-05-01 01:41:20 -0500170
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200171static int dso__inject_build_id(struct dso *self, struct perf_tool *tool,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200172 struct machine *machine)
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300173{
174 u16 misc = PERF_RECORD_MISC_USER;
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300175 int err;
Tom Zanussi454c4072010-05-01 01:41:20 -0500176
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300177 if (dso__read_build_id(self) < 0) {
178 pr_debug("no build_id found for %s\n", self->long_name);
179 return -1;
180 }
Tom Zanussi454c4072010-05-01 01:41:20 -0500181
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300182 if (self->kernel)
183 misc = PERF_RECORD_MISC_KERNEL;
184
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200185 err = perf_event__synthesize_build_id(tool, self, misc, perf_event__repipe,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200186 machine);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300187 if (err) {
188 pr_err("Can't synthesize build_id event for %s\n", self->long_name);
Tom Zanussi454c4072010-05-01 01:41:20 -0500189 return -1;
190 }
191
192 return 0;
193}
194
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200195static int perf_event__inject_buildid(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200196 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200197 struct perf_sample *sample,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300198 struct perf_evsel *evsel __maybe_unused,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200199 struct machine *machine)
Tom Zanussi454c4072010-05-01 01:41:20 -0500200{
201 struct addr_location al;
202 struct thread *thread;
203 u8 cpumode;
Tom Zanussi454c4072010-05-01 01:41:20 -0500204
205 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
206
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200207 thread = machine__findnew_thread(machine, event->ip.pid);
Tom Zanussi454c4072010-05-01 01:41:20 -0500208 if (thread == NULL) {
209 pr_err("problem processing %d event, skipping it.\n",
210 event->header.type);
Tom Zanussi454c4072010-05-01 01:41:20 -0500211 goto repipe;
212 }
213
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200214 thread__find_addr_map(thread, machine, cpumode, MAP__FUNCTION,
215 event->ip.ip, &al);
Tom Zanussi454c4072010-05-01 01:41:20 -0500216
217 if (al.map != NULL) {
218 if (!al.map->dso->hit) {
219 al.map->dso->hit = 1;
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300220 if (map__load(al.map, NULL) >= 0) {
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200221 dso__inject_build_id(al.map->dso, tool, machine);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300222 /*
223 * If this fails, too bad, let the other side
224 * account this as unresolved.
225 */
Namhyung Kim393be2e2012-08-06 13:41:21 +0900226 } else {
Namhyung Kim29a0fc92012-09-28 18:31:59 +0900227#ifdef LIBELF_SUPPORT
Tom Zanussi454c4072010-05-01 01:41:20 -0500228 pr_warning("no symbols found in %s, maybe "
229 "install a debug package?\n",
230 al.map->dso->long_name);
Namhyung Kim393be2e2012-08-06 13:41:21 +0900231#endif
232 }
Tom Zanussi454c4072010-05-01 01:41:20 -0500233 }
234 }
235
236repipe:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200237 perf_event__repipe(tool, event, sample, machine);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300238 return 0;
Tom Zanussi454c4072010-05-01 01:41:20 -0500239}
240
Andrew Vagin26a031e2012-08-07 16:56:04 +0400241static int perf_inject__sched_process_exit(struct perf_tool *tool,
242 union perf_event *event __maybe_unused,
243 struct perf_sample *sample,
244 struct perf_evsel *evsel __maybe_unused,
245 struct machine *machine __maybe_unused)
246{
247 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
248 struct event_entry *ent;
249
250 list_for_each_entry(ent, &inject->samples, node) {
251 if (sample->tid == ent->tid) {
252 list_del_init(&ent->node);
253 free(ent);
254 break;
255 }
256 }
257
258 return 0;
259}
260
261static int perf_inject__sched_switch(struct perf_tool *tool,
262 union perf_event *event,
263 struct perf_sample *sample,
264 struct perf_evsel *evsel,
265 struct machine *machine)
266{
267 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
268 struct event_entry *ent;
269
270 perf_inject__sched_process_exit(tool, event, sample, evsel, machine);
271
272 ent = malloc(event->header.size + sizeof(struct event_entry));
273 if (ent == NULL) {
274 color_fprintf(stderr, PERF_COLOR_RED,
275 "Not enough memory to process sched switch event!");
276 return -1;
277 }
278
279 ent->tid = sample->tid;
280 memcpy(&ent->event, event, event->header.size);
281 list_add(&ent->node, &inject->samples);
282 return 0;
283}
284
285static int perf_inject__sched_stat(struct perf_tool *tool,
286 union perf_event *event __maybe_unused,
287 struct perf_sample *sample,
288 struct perf_evsel *evsel,
289 struct machine *machine)
290{
291 struct event_entry *ent;
292 union perf_event *event_sw;
293 struct perf_sample sample_sw;
294 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
295 u32 pid = perf_evsel__intval(evsel, sample, "pid");
296
297 list_for_each_entry(ent, &inject->samples, node) {
298 if (pid == ent->tid)
299 goto found;
300 }
301
302 return 0;
303found:
304 event_sw = &ent->event[0];
305 perf_evsel__parse_sample(evsel, event_sw, &sample_sw);
306
307 sample_sw.period = sample->period;
308 sample_sw.time = sample->time;
309 perf_event__synthesize_sample(event_sw, evsel->attr.sample_type,
310 &sample_sw, false);
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400311 build_id__mark_dso_hit(tool, event_sw, &sample_sw, evsel, machine);
Andrew Vagin26a031e2012-08-07 16:56:04 +0400312 return perf_event__repipe(tool, event_sw, &sample_sw, machine);
313}
314
Tom Zanussi454c4072010-05-01 01:41:20 -0500315extern volatile int session_done;
316
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300317static void sig_handler(int sig __maybe_unused)
Tom Zanussi454c4072010-05-01 01:41:20 -0500318{
319 session_done = 1;
320}
321
Andrew Vagin26a031e2012-08-07 16:56:04 +0400322static int perf_evsel__check_stype(struct perf_evsel *evsel,
323 u64 sample_type, const char *sample_msg)
324{
325 struct perf_event_attr *attr = &evsel->attr;
326 const char *name = perf_evsel__name(evsel);
327
328 if (!(attr->sample_type & sample_type)) {
329 pr_err("Samples for %s event do not have %s attribute set.",
330 name, sample_msg);
331 return -EINVAL;
332 }
333
334 return 0;
335}
336
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300337static int __cmd_inject(struct perf_inject *inject)
Tom Zanussi454c4072010-05-01 01:41:20 -0500338{
339 struct perf_session *session;
340 int ret = -EINVAL;
341
342 signal(SIGINT, sig_handler);
343
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400344 if (inject->build_ids || inject->sched_stat) {
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300345 inject->tool.mmap = perf_event__repipe_mmap;
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300346 inject->tool.fork = perf_event__repipe_fork;
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300347 inject->tool.tracing_data = perf_event__repipe_tracing_data;
Tom Zanussi454c4072010-05-01 01:41:20 -0500348 }
349
Andrew Vagine558a5b2012-08-07 16:56:02 +0400350 session = perf_session__new(inject->input_name, O_RDONLY, false, true, &inject->tool);
Tom Zanussi454c4072010-05-01 01:41:20 -0500351 if (session == NULL)
352 return -ENOMEM;
353
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400354 if (inject->build_ids) {
355 inject->tool.sample = perf_event__inject_buildid;
356 } else if (inject->sched_stat) {
Andrew Vagin26a031e2012-08-07 16:56:04 +0400357 struct perf_evsel *evsel;
358
359 inject->tool.ordered_samples = true;
360
361 list_for_each_entry(evsel, &session->evlist->entries, node) {
362 const char *name = perf_evsel__name(evsel);
363
364 if (!strcmp(name, "sched:sched_switch")) {
365 if (perf_evsel__check_stype(evsel, PERF_SAMPLE_TID, "TID"))
366 return -EINVAL;
367
368 evsel->handler.func = perf_inject__sched_switch;
369 } else if (!strcmp(name, "sched:sched_process_exit"))
370 evsel->handler.func = perf_inject__sched_process_exit;
371 else if (!strncmp(name, "sched:sched_stat_", 17))
372 evsel->handler.func = perf_inject__sched_stat;
373 }
374 }
375
Andrew Vagine558a5b2012-08-07 16:56:02 +0400376 if (!inject->pipe_output)
377 lseek(inject->output, session->header.data_offset, SEEK_SET);
378
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300379 ret = perf_session__process_events(session, &inject->tool);
Tom Zanussi454c4072010-05-01 01:41:20 -0500380
Andrew Vagine558a5b2012-08-07 16:56:02 +0400381 if (!inject->pipe_output) {
382 session->header.data_size = inject->bytes_written;
383 perf_session__write_header(session, session->evlist, inject->output, true);
384 }
385
Tom Zanussi454c4072010-05-01 01:41:20 -0500386 perf_session__delete(session);
387
388 return ret;
389}
390
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300391int cmd_inject(int argc, const char **argv, const char *prefix __maybe_unused)
Tom Zanussi454c4072010-05-01 01:41:20 -0500392{
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300393 struct perf_inject inject = {
394 .tool = {
395 .sample = perf_event__repipe_sample,
396 .mmap = perf_event__repipe,
397 .comm = perf_event__repipe,
398 .fork = perf_event__repipe,
399 .exit = perf_event__repipe,
400 .lost = perf_event__repipe,
401 .read = perf_event__repipe_sample,
402 .throttle = perf_event__repipe,
403 .unthrottle = perf_event__repipe,
404 .attr = perf_event__repipe_attr,
405 .event_type = perf_event__repipe_event_type_synth,
Adrian Hunter47c3d102013-07-04 16:20:21 +0300406 .tracing_data = perf_event__repipe_op2_synth,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300407 .build_id = perf_event__repipe_op2_synth,
408 },
Andrew Vagine558a5b2012-08-07 16:56:02 +0400409 .input_name = "-",
Andrew Vagin26a031e2012-08-07 16:56:04 +0400410 .samples = LIST_HEAD_INIT(inject.samples),
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300411 };
Andrew Vagine558a5b2012-08-07 16:56:02 +0400412 const char *output_name = "-";
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300413 const struct option options[] = {
414 OPT_BOOLEAN('b', "build-ids", &inject.build_ids,
415 "Inject build-ids into the output stream"),
Andrew Vagine558a5b2012-08-07 16:56:02 +0400416 OPT_STRING('i', "input", &inject.input_name, "file",
417 "input file name"),
418 OPT_STRING('o', "output", &output_name, "file",
419 "output file name"),
Andrew Vagin26a031e2012-08-07 16:56:04 +0400420 OPT_BOOLEAN('s', "sched-stat", &inject.sched_stat,
421 "Merge sched-stat and sched-switch for getting events "
422 "where and how long tasks slept"),
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300423 OPT_INCR('v', "verbose", &verbose,
424 "be more verbose (show build ids, etc)"),
425 OPT_END()
426 };
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300427 const char * const inject_usage[] = {
428 "perf inject [<options>]",
429 NULL
430 };
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300431
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300432 argc = parse_options(argc, argv, options, inject_usage, 0);
Tom Zanussi454c4072010-05-01 01:41:20 -0500433
434 /*
435 * Any (unrecognized) arguments left?
436 */
437 if (argc)
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300438 usage_with_options(inject_usage, options);
Tom Zanussi454c4072010-05-01 01:41:20 -0500439
Andrew Vagine558a5b2012-08-07 16:56:02 +0400440 if (!strcmp(output_name, "-")) {
441 inject.pipe_output = 1;
442 inject.output = STDOUT_FILENO;
443 } else {
444 inject.output = open(output_name, O_CREAT | O_WRONLY | O_TRUNC,
445 S_IRUSR | S_IWUSR);
446 if (inject.output < 0) {
447 perror("failed to create output file");
448 return -1;
449 }
450 }
451
Tom Zanussi454c4072010-05-01 01:41:20 -0500452 if (symbol__init() < 0)
453 return -1;
454
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300455 return __cmd_inject(&inject);
Tom Zanussi454c4072010-05-01 01:41:20 -0500456}