blob: ea8db38eedd10a987534da2c81a1ca83cbb2109f [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 Olsaf5fc14122013-10-15 16:27:32 +020018#include "util/data.h"
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +030019#include "util/auxtrace.h"
Stephane Eranian9b07e272015-11-30 10:02:21 +010020#include "util/jit.h"
Arnaldo Carvalho de Meloe7ff8922017-04-19 21:34:35 -030021#include "util/thread.h"
Tom Zanussi454c4072010-05-01 01:41:20 -050022
Josh Poimboeuf4b6ab942015-12-15 09:39:39 -060023#include <subcmd/parse-options.h>
Tom Zanussi454c4072010-05-01 01:41:20 -050024
Andrew Vagin26a031e2012-08-07 16:56:04 +040025#include <linux/list.h>
Arnaldo Carvalho de Meloa43783a2017-04-18 10:46:11 -030026#include <errno.h>
Arnaldo Carvalho de Melo9607ad32017-04-19 15:49:18 -030027#include <signal.h>
Andrew Vagin26a031e2012-08-07 16:56:04 +040028
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -030029struct perf_inject {
Jiri Olsa34069122013-10-29 19:04:57 +010030 struct perf_tool tool;
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +090031 struct perf_session *session;
Jiri Olsa34069122013-10-29 19:04:57 +010032 bool build_ids;
33 bool sched_stat;
Adrian Huntercd10b282015-04-30 17:37:26 +030034 bool have_auxtrace;
Adrian Hunterf56fb982015-09-25 16:15:55 +030035 bool strip;
Stephane Eranian9b07e272015-11-30 10:02:21 +010036 bool jit_mode;
Jiri Olsa34069122013-10-29 19:04:57 +010037 const char *input_name;
38 struct perf_data_file output;
39 u64 bytes_written;
Adrian Hunter73117302015-09-25 16:15:54 +030040 u64 aux_id;
Jiri Olsa34069122013-10-29 19:04:57 +010041 struct list_head samples;
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +030042 struct itrace_synth_opts itrace_synth_opts;
Andrew Vagin26a031e2012-08-07 16:56:04 +040043};
44
45struct event_entry {
46 struct list_head node;
47 u32 tid;
48 union perf_event event[0];
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -030049};
Tom Zanussi454c4072010-05-01 01:41:20 -050050
Adrian Huntercd17a9b2015-04-21 12:21:54 +030051static int output_bytes(struct perf_inject *inject, void *buf, size_t sz)
Tom Zanussi454c4072010-05-01 01:41:20 -050052{
Jiri Olsa34069122013-10-29 19:04:57 +010053 ssize_t size;
Tom Zanussi454c4072010-05-01 01:41:20 -050054
Adrian Huntercd17a9b2015-04-21 12:21:54 +030055 size = perf_data_file__write(&inject->output, buf, sz);
Jiri Olsa34069122013-10-29 19:04:57 +010056 if (size < 0)
57 return -errno;
Tom Zanussi454c4072010-05-01 01:41:20 -050058
Jiri Olsa34069122013-10-29 19:04:57 +010059 inject->bytes_written += size;
Tom Zanussi454c4072010-05-01 01:41:20 -050060 return 0;
61}
62
Adrian Huntercd17a9b2015-04-21 12:21:54 +030063static int perf_event__repipe_synth(struct perf_tool *tool,
64 union perf_event *event)
65{
66 struct perf_inject *inject = container_of(tool, struct perf_inject,
67 tool);
68
69 return output_bytes(inject, event, event->header.size);
70}
71
Arnaldo Carvalho de Melod704ebd2015-03-03 12:37:54 -030072static int perf_event__repipe_oe_synth(struct perf_tool *tool,
73 union perf_event *event,
74 struct ordered_events *oe __maybe_unused)
75{
76 return perf_event__repipe_synth(tool, event);
77}
78
Jiri Olsae12b2022016-03-10 17:41:13 +010079#ifdef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +010080static int perf_event__drop_oe(struct perf_tool *tool __maybe_unused,
81 union perf_event *event __maybe_unused,
82 struct ordered_events *oe __maybe_unused)
83{
84 return 0;
85}
86#endif
87
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020088static int perf_event__repipe_op2_synth(struct perf_tool *tool,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -020089 union perf_event *event,
Irina Tirdea1d037ca2012-09-11 01:15:03 +030090 struct perf_session *session
91 __maybe_unused)
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -020092{
Adrian Hunter63c2c9f2013-07-04 16:20:20 +030093 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -020094}
95
Adrian Hunter47c3d102013-07-04 16:20:21 +030096static int perf_event__repipe_attr(struct perf_tool *tool,
97 union perf_event *event,
98 struct perf_evlist **pevlist)
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -020099{
Adrian Hunter89c97d92013-10-22 10:34:09 +0300100 struct perf_inject *inject = container_of(tool, struct perf_inject,
101 tool);
Stephane Eranian1a1ed1b2012-05-15 13:28:11 +0200102 int ret;
Adrian Hunter47c3d102013-07-04 16:20:21 +0300103
104 ret = perf_event__process_attr(tool, event, pevlist);
Stephane Eranian1a1ed1b2012-05-15 13:28:11 +0200105 if (ret)
106 return ret;
107
Jiri Olsaa261e4a2014-06-05 18:51:44 +0200108 if (!inject->output.is_pipe)
Adrian Hunter89c97d92013-10-22 10:34:09 +0300109 return 0;
110
Adrian Hunter47c3d102013-07-04 16:20:21 +0300111 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -0200112}
113
Adrian Huntere31f0d02015-04-30 17:37:27 +0300114#ifdef HAVE_AUXTRACE_SUPPORT
115
116static int copy_bytes(struct perf_inject *inject, int fd, off_t size)
117{
118 char buf[4096];
119 ssize_t ssz;
120 int ret;
121
122 while (size > 0) {
123 ssz = read(fd, buf, min(size, (off_t)sizeof(buf)));
124 if (ssz < 0)
125 return -errno;
126 ret = output_bytes(inject, buf, ssz);
127 if (ret)
128 return ret;
129 size -= ssz;
130 }
131
132 return 0;
133}
134
Adrian Huntercd17a9b2015-04-21 12:21:54 +0300135static s64 perf_event__repipe_auxtrace(struct perf_tool *tool,
136 union perf_event *event,
Arnaldo Carvalho de Melob8f8eb82016-03-22 13:09:37 -0300137 struct perf_session *session)
Adrian Huntercd17a9b2015-04-21 12:21:54 +0300138{
139 struct perf_inject *inject = container_of(tool, struct perf_inject,
140 tool);
141 int ret;
142
Adrian Huntercd10b282015-04-30 17:37:26 +0300143 inject->have_auxtrace = true;
144
Adrian Hunter99fa2982015-04-30 17:37:25 +0300145 if (!inject->output.is_pipe) {
146 off_t offset;
147
148 offset = lseek(inject->output.fd, 0, SEEK_CUR);
149 if (offset == -1)
150 return -errno;
151 ret = auxtrace_index__auxtrace_event(&session->auxtrace_index,
152 event, offset);
153 if (ret < 0)
154 return ret;
155 }
156
Adrian Huntercd17a9b2015-04-21 12:21:54 +0300157 if (perf_data_file__is_pipe(session->file) || !session->one_mmap) {
158 ret = output_bytes(inject, event, event->header.size);
159 if (ret < 0)
160 return ret;
161 ret = copy_bytes(inject, perf_data_file__fd(session->file),
162 event->auxtrace.size);
163 } else {
164 ret = output_bytes(inject, event,
165 event->header.size + event->auxtrace.size);
166 }
167 if (ret < 0)
168 return ret;
169
170 return event->auxtrace.size;
171}
172
Adrian Huntere31f0d02015-04-30 17:37:27 +0300173#else
174
175static s64
176perf_event__repipe_auxtrace(struct perf_tool *tool __maybe_unused,
177 union perf_event *event __maybe_unused,
178 struct perf_session *session __maybe_unused)
179{
180 pr_err("AUX area tracing not supported\n");
181 return -EINVAL;
182}
183
184#endif
185
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200186static int perf_event__repipe(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200187 union perf_event *event,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300188 struct perf_sample *sample __maybe_unused,
Adrian Hunter63c2c9f2013-07-04 16:20:20 +0300189 struct machine *machine __maybe_unused)
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -0200190{
Adrian Hunter63c2c9f2013-07-04 16:20:20 +0300191 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -0200192}
193
Adrian Hunterf56fb982015-09-25 16:15:55 +0300194static int perf_event__drop(struct perf_tool *tool __maybe_unused,
195 union perf_event *event __maybe_unused,
196 struct perf_sample *sample __maybe_unused,
197 struct machine *machine __maybe_unused)
198{
199 return 0;
200}
201
Adrian Hunter73117302015-09-25 16:15:54 +0300202static int perf_event__drop_aux(struct perf_tool *tool,
203 union perf_event *event __maybe_unused,
204 struct perf_sample *sample,
205 struct machine *machine __maybe_unused)
206{
207 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
208
209 if (!inject->aux_id)
210 inject->aux_id = sample->id;
211
212 return 0;
213}
214
Andrew Vagin26a031e2012-08-07 16:56:04 +0400215typedef int (*inject_handler)(struct perf_tool *tool,
216 union perf_event *event,
217 struct perf_sample *sample,
218 struct perf_evsel *evsel,
219 struct machine *machine);
220
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200221static int perf_event__repipe_sample(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200222 union perf_event *event,
Andrew Vagin26a031e2012-08-07 16:56:04 +0400223 struct perf_sample *sample,
224 struct perf_evsel *evsel,
225 struct machine *machine)
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300226{
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300227 if (evsel->handler) {
228 inject_handler f = evsel->handler;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400229 return f(tool, event, sample, evsel, machine);
230 }
231
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400232 build_id__mark_dso_hit(tool, event, sample, evsel, machine);
233
Adrian Hunter63c2c9f2013-07-04 16:20:20 +0300234 return perf_event__repipe_synth(tool, event);
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300235}
236
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200237static int perf_event__repipe_mmap(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200238 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200239 struct perf_sample *sample,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200240 struct machine *machine)
Tom Zanussi454c4072010-05-01 01:41:20 -0500241{
242 int err;
243
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200244 err = perf_event__process_mmap(tool, event, sample, machine);
245 perf_event__repipe(tool, event, sample, machine);
Tom Zanussi454c4072010-05-01 01:41:20 -0500246
247 return err;
248}
249
Jiri Olsae12b2022016-03-10 17:41:13 +0100250#ifdef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +0100251static int perf_event__jit_repipe_mmap(struct perf_tool *tool,
252 union perf_event *event,
253 struct perf_sample *sample,
254 struct machine *machine)
255{
256 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
257 u64 n = 0;
Adrian Hunter570735b2016-03-07 16:44:40 -0300258 int ret;
Stephane Eranian9b07e272015-11-30 10:02:21 +0100259
260 /*
261 * if jit marker, then inject jit mmaps and generate ELF images
262 */
Adrian Hunter570735b2016-03-07 16:44:40 -0300263 ret = jit_process(inject->session, &inject->output, machine,
264 event->mmap.filename, sample->pid, &n);
265 if (ret < 0)
266 return ret;
267 if (ret) {
Stephane Eranian9b07e272015-11-30 10:02:21 +0100268 inject->bytes_written += n;
269 return 0;
270 }
271 return perf_event__repipe_mmap(tool, event, sample, machine);
272}
273#endif
274
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200275static int perf_event__repipe_mmap2(struct perf_tool *tool,
276 union perf_event *event,
277 struct perf_sample *sample,
278 struct machine *machine)
279{
280 int err;
281
282 err = perf_event__process_mmap2(tool, event, sample, machine);
283 perf_event__repipe(tool, event, sample, machine);
284
285 return err;
286}
287
Jiri Olsae12b2022016-03-10 17:41:13 +0100288#ifdef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +0100289static int perf_event__jit_repipe_mmap2(struct perf_tool *tool,
290 union perf_event *event,
291 struct perf_sample *sample,
292 struct machine *machine)
293{
294 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
295 u64 n = 0;
Adrian Hunter570735b2016-03-07 16:44:40 -0300296 int ret;
Stephane Eranian9b07e272015-11-30 10:02:21 +0100297
298 /*
299 * if jit marker, then inject jit mmaps and generate ELF images
300 */
Adrian Hunter570735b2016-03-07 16:44:40 -0300301 ret = jit_process(inject->session, &inject->output, machine,
302 event->mmap2.filename, sample->pid, &n);
303 if (ret < 0)
304 return ret;
305 if (ret) {
Stephane Eranian9b07e272015-11-30 10:02:21 +0100306 inject->bytes_written += n;
307 return 0;
308 }
309 return perf_event__repipe_mmap2(tool, event, sample, machine);
310}
311#endif
312
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300313static int perf_event__repipe_fork(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200314 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200315 struct perf_sample *sample,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200316 struct machine *machine)
Tom Zanussi454c4072010-05-01 01:41:20 -0500317{
318 int err;
319
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300320 err = perf_event__process_fork(tool, event, sample, machine);
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200321 perf_event__repipe(tool, event, sample, machine);
Tom Zanussi454c4072010-05-01 01:41:20 -0500322
323 return err;
324}
325
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300326static int perf_event__repipe_comm(struct perf_tool *tool,
327 union perf_event *event,
328 struct perf_sample *sample,
329 struct machine *machine)
330{
331 int err;
332
333 err = perf_event__process_comm(tool, event, sample, machine);
334 perf_event__repipe(tool, event, sample, machine);
335
336 return err;
337}
338
Hari Bathinif3b36142017-03-08 02:11:43 +0530339static int perf_event__repipe_namespaces(struct perf_tool *tool,
340 union perf_event *event,
341 struct perf_sample *sample,
342 struct machine *machine)
343{
344 int err = perf_event__process_namespaces(tool, event, sample, machine);
345
346 perf_event__repipe(tool, event, sample, machine);
347
348 return err;
349}
350
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300351static int perf_event__repipe_exit(struct perf_tool *tool,
352 union perf_event *event,
353 struct perf_sample *sample,
354 struct machine *machine)
355{
356 int err;
357
358 err = perf_event__process_exit(tool, event, sample, machine);
359 perf_event__repipe(tool, event, sample, machine);
360
361 return err;
362}
363
Adrian Hunter47c3d102013-07-04 16:20:21 +0300364static int perf_event__repipe_tracing_data(struct perf_tool *tool,
365 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200366 struct perf_session *session)
Tom Zanussi454c4072010-05-01 01:41:20 -0500367{
368 int err;
369
Adrian Hunter47c3d102013-07-04 16:20:21 +0300370 perf_event__repipe_synth(tool, event);
371 err = perf_event__process_tracing_data(tool, event, session);
Tom Zanussi454c4072010-05-01 01:41:20 -0500372
373 return err;
374}
375
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300376static int perf_event__repipe_id_index(struct perf_tool *tool,
377 union perf_event *event,
378 struct perf_session *session)
379{
380 int err;
381
382 perf_event__repipe_synth(tool, event);
383 err = perf_event__process_id_index(tool, event, session);
384
385 return err;
386}
387
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300388static int dso__read_build_id(struct dso *dso)
Tom Zanussi454c4072010-05-01 01:41:20 -0500389{
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300390 if (dso->has_build_id)
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300391 return 0;
Tom Zanussi454c4072010-05-01 01:41:20 -0500392
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300393 if (filename__read_build_id(dso->long_name, dso->build_id,
394 sizeof(dso->build_id)) > 0) {
395 dso->has_build_id = true;
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300396 return 0;
Tom Zanussi454c4072010-05-01 01:41:20 -0500397 }
398
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300399 return -1;
400}
Tom Zanussi454c4072010-05-01 01:41:20 -0500401
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300402static int dso__inject_build_id(struct dso *dso, struct perf_tool *tool,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200403 struct machine *machine)
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300404{
405 u16 misc = PERF_RECORD_MISC_USER;
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300406 int err;
Tom Zanussi454c4072010-05-01 01:41:20 -0500407
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300408 if (dso__read_build_id(dso) < 0) {
409 pr_debug("no build_id found for %s\n", dso->long_name);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300410 return -1;
411 }
Tom Zanussi454c4072010-05-01 01:41:20 -0500412
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300413 if (dso->kernel)
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300414 misc = PERF_RECORD_MISC_KERNEL;
415
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300416 err = perf_event__synthesize_build_id(tool, dso, misc, perf_event__repipe,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200417 machine);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300418 if (err) {
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300419 pr_err("Can't synthesize build_id event for %s\n", dso->long_name);
Tom Zanussi454c4072010-05-01 01:41:20 -0500420 return -1;
421 }
422
423 return 0;
424}
425
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200426static int perf_event__inject_buildid(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200427 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200428 struct perf_sample *sample,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300429 struct perf_evsel *evsel __maybe_unused,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200430 struct machine *machine)
Tom Zanussi454c4072010-05-01 01:41:20 -0500431{
432 struct addr_location al;
433 struct thread *thread;
Tom Zanussi454c4072010-05-01 01:41:20 -0500434
Namhyung Kim13ce34d2014-05-12 09:56:42 +0900435 thread = machine__findnew_thread(machine, sample->pid, sample->tid);
Tom Zanussi454c4072010-05-01 01:41:20 -0500436 if (thread == NULL) {
437 pr_err("problem processing %d event, skipping it.\n",
438 event->header.type);
Tom Zanussi454c4072010-05-01 01:41:20 -0500439 goto repipe;
440 }
441
Arnaldo Carvalho de Melo473398a2016-03-22 18:23:43 -0300442 thread__find_addr_map(thread, sample->cpumode, MAP__FUNCTION, sample->ip, &al);
Tom Zanussi454c4072010-05-01 01:41:20 -0500443
444 if (al.map != NULL) {
445 if (!al.map->dso->hit) {
446 al.map->dso->hit = 1;
Arnaldo Carvalho de Melobe39db92016-09-01 19:25:52 -0300447 if (map__load(al.map) >= 0) {
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200448 dso__inject_build_id(al.map->dso, tool, machine);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300449 /*
450 * If this fails, too bad, let the other side
451 * account this as unresolved.
452 */
Namhyung Kim393be2e2012-08-06 13:41:21 +0900453 } else {
Ingo Molnar89fe8082013-09-30 12:07:11 +0200454#ifdef HAVE_LIBELF_SUPPORT
Tom Zanussi454c4072010-05-01 01:41:20 -0500455 pr_warning("no symbols found in %s, maybe "
456 "install a debug package?\n",
457 al.map->dso->long_name);
Namhyung Kim393be2e2012-08-06 13:41:21 +0900458#endif
459 }
Tom Zanussi454c4072010-05-01 01:41:20 -0500460 }
461 }
462
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300463 thread__put(thread);
Tom Zanussi454c4072010-05-01 01:41:20 -0500464repipe:
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200465 perf_event__repipe(tool, event, sample, machine);
Arnaldo Carvalho de Melo090f7202010-05-02 19:46:36 -0300466 return 0;
Tom Zanussi454c4072010-05-01 01:41:20 -0500467}
468
Andrew Vagin26a031e2012-08-07 16:56:04 +0400469static int perf_inject__sched_process_exit(struct perf_tool *tool,
470 union perf_event *event __maybe_unused,
471 struct perf_sample *sample,
472 struct perf_evsel *evsel __maybe_unused,
473 struct machine *machine __maybe_unused)
474{
475 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
476 struct event_entry *ent;
477
478 list_for_each_entry(ent, &inject->samples, node) {
479 if (sample->tid == ent->tid) {
480 list_del_init(&ent->node);
481 free(ent);
482 break;
483 }
484 }
485
486 return 0;
487}
488
489static int perf_inject__sched_switch(struct perf_tool *tool,
490 union perf_event *event,
491 struct perf_sample *sample,
492 struct perf_evsel *evsel,
493 struct machine *machine)
494{
495 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
496 struct event_entry *ent;
497
498 perf_inject__sched_process_exit(tool, event, sample, evsel, machine);
499
500 ent = malloc(event->header.size + sizeof(struct event_entry));
501 if (ent == NULL) {
502 color_fprintf(stderr, PERF_COLOR_RED,
503 "Not enough memory to process sched switch event!");
504 return -1;
505 }
506
507 ent->tid = sample->tid;
508 memcpy(&ent->event, event, event->header.size);
509 list_add(&ent->node, &inject->samples);
510 return 0;
511}
512
513static int perf_inject__sched_stat(struct perf_tool *tool,
514 union perf_event *event __maybe_unused,
515 struct perf_sample *sample,
516 struct perf_evsel *evsel,
517 struct machine *machine)
518{
519 struct event_entry *ent;
520 union perf_event *event_sw;
521 struct perf_sample sample_sw;
522 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
523 u32 pid = perf_evsel__intval(evsel, sample, "pid");
524
525 list_for_each_entry(ent, &inject->samples, node) {
526 if (pid == ent->tid)
527 goto found;
528 }
529
530 return 0;
531found:
532 event_sw = &ent->event[0];
533 perf_evsel__parse_sample(evsel, event_sw, &sample_sw);
534
535 sample_sw.period = sample->period;
536 sample_sw.time = sample->time;
537 perf_event__synthesize_sample(event_sw, evsel->attr.sample_type,
Adrian Hunterd03f2172013-08-27 11:23:11 +0300538 evsel->attr.read_format, &sample_sw,
539 false);
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400540 build_id__mark_dso_hit(tool, event_sw, &sample_sw, evsel, machine);
Andrew Vagin26a031e2012-08-07 16:56:04 +0400541 return perf_event__repipe(tool, event_sw, &sample_sw, machine);
542}
543
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300544static void sig_handler(int sig __maybe_unused)
Tom Zanussi454c4072010-05-01 01:41:20 -0500545{
546 session_done = 1;
547}
548
Andrew Vagin26a031e2012-08-07 16:56:04 +0400549static int perf_evsel__check_stype(struct perf_evsel *evsel,
550 u64 sample_type, const char *sample_msg)
551{
552 struct perf_event_attr *attr = &evsel->attr;
553 const char *name = perf_evsel__name(evsel);
554
555 if (!(attr->sample_type & sample_type)) {
556 pr_err("Samples for %s event do not have %s attribute set.",
557 name, sample_msg);
558 return -EINVAL;
559 }
560
561 return 0;
562}
563
Adrian Hunterf56fb982015-09-25 16:15:55 +0300564static int drop_sample(struct perf_tool *tool __maybe_unused,
565 union perf_event *event __maybe_unused,
566 struct perf_sample *sample __maybe_unused,
567 struct perf_evsel *evsel __maybe_unused,
568 struct machine *machine __maybe_unused)
569{
570 return 0;
571}
572
573static void strip_init(struct perf_inject *inject)
574{
575 struct perf_evlist *evlist = inject->session->evlist;
576 struct perf_evsel *evsel;
577
578 inject->tool.context_switch = perf_event__drop;
579
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300580 evlist__for_each_entry(evlist, evsel)
Adrian Hunterf56fb982015-09-25 16:15:55 +0300581 evsel->handler = drop_sample;
582}
583
584static bool has_tracking(struct perf_evsel *evsel)
585{
586 return evsel->attr.mmap || evsel->attr.mmap2 || evsel->attr.comm ||
587 evsel->attr.task;
588}
589
590#define COMPAT_MASK (PERF_SAMPLE_ID | PERF_SAMPLE_TID | PERF_SAMPLE_TIME | \
591 PERF_SAMPLE_ID | PERF_SAMPLE_CPU | PERF_SAMPLE_IDENTIFIER)
592
593/*
594 * In order that the perf.data file is parsable, tracking events like MMAP need
595 * their selected event to exist, except if there is only 1 selected event left
596 * and it has a compatible sample type.
597 */
598static bool ok_to_remove(struct perf_evlist *evlist,
599 struct perf_evsel *evsel_to_remove)
600{
601 struct perf_evsel *evsel;
602 int cnt = 0;
603 bool ok = false;
604
605 if (!has_tracking(evsel_to_remove))
606 return true;
607
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300608 evlist__for_each_entry(evlist, evsel) {
Adrian Hunterf56fb982015-09-25 16:15:55 +0300609 if (evsel->handler != drop_sample) {
610 cnt += 1;
611 if ((evsel->attr.sample_type & COMPAT_MASK) ==
612 (evsel_to_remove->attr.sample_type & COMPAT_MASK))
613 ok = true;
614 }
615 }
616
617 return ok && cnt == 1;
618}
619
620static void strip_fini(struct perf_inject *inject)
621{
622 struct perf_evlist *evlist = inject->session->evlist;
623 struct perf_evsel *evsel, *tmp;
624
625 /* Remove non-synthesized evsels if possible */
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300626 evlist__for_each_entry_safe(evlist, tmp, evsel) {
Adrian Hunterf56fb982015-09-25 16:15:55 +0300627 if (evsel->handler == drop_sample &&
628 ok_to_remove(evlist, evsel)) {
629 pr_debug("Deleting %s\n", perf_evsel__name(evsel));
630 perf_evlist__remove(evlist, evsel);
631 perf_evsel__delete(evsel);
632 }
633 }
634}
635
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300636static int __cmd_inject(struct perf_inject *inject)
Tom Zanussi454c4072010-05-01 01:41:20 -0500637{
Tom Zanussi454c4072010-05-01 01:41:20 -0500638 int ret = -EINVAL;
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900639 struct perf_session *session = inject->session;
Jiri Olsa34069122013-10-29 19:04:57 +0100640 struct perf_data_file *file_out = &inject->output;
Namhyung Kim42aa2762015-01-29 17:06:48 +0900641 int fd = perf_data_file__fd(file_out);
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300642 u64 output_data_offset;
Tom Zanussi454c4072010-05-01 01:41:20 -0500643
644 signal(SIGINT, sig_handler);
645
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300646 if (inject->build_ids || inject->sched_stat ||
647 inject->itrace_synth_opts.set) {
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300648 inject->tool.mmap = perf_event__repipe_mmap;
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200649 inject->tool.mmap2 = perf_event__repipe_mmap2;
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300650 inject->tool.fork = perf_event__repipe_fork;
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300651 inject->tool.tracing_data = perf_event__repipe_tracing_data;
Tom Zanussi454c4072010-05-01 01:41:20 -0500652 }
653
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300654 output_data_offset = session->header.data_offset;
655
Andrew Vagin54a3cf52012-08-07 16:56:05 +0400656 if (inject->build_ids) {
657 inject->tool.sample = perf_event__inject_buildid;
658 } else if (inject->sched_stat) {
Andrew Vagin26a031e2012-08-07 16:56:04 +0400659 struct perf_evsel *evsel;
660
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300661 evlist__for_each_entry(session->evlist, evsel) {
Andrew Vagin26a031e2012-08-07 16:56:04 +0400662 const char *name = perf_evsel__name(evsel);
663
664 if (!strcmp(name, "sched:sched_switch")) {
665 if (perf_evsel__check_stype(evsel, PERF_SAMPLE_TID, "TID"))
666 return -EINVAL;
667
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300668 evsel->handler = perf_inject__sched_switch;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400669 } else if (!strcmp(name, "sched:sched_process_exit"))
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300670 evsel->handler = perf_inject__sched_process_exit;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400671 else if (!strncmp(name, "sched:sched_stat_", 17))
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300672 evsel->handler = perf_inject__sched_stat;
Andrew Vagin26a031e2012-08-07 16:56:04 +0400673 }
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300674 } else if (inject->itrace_synth_opts.set) {
675 session->itrace_synth_opts = &inject->itrace_synth_opts;
676 inject->itrace_synth_opts.inject = true;
677 inject->tool.comm = perf_event__repipe_comm;
Hari Bathinif3b36142017-03-08 02:11:43 +0530678 inject->tool.namespaces = perf_event__repipe_namespaces;
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300679 inject->tool.exit = perf_event__repipe_exit;
680 inject->tool.id_index = perf_event__repipe_id_index;
681 inject->tool.auxtrace_info = perf_event__process_auxtrace_info;
682 inject->tool.auxtrace = perf_event__process_auxtrace;
Adrian Hunter73117302015-09-25 16:15:54 +0300683 inject->tool.aux = perf_event__drop_aux;
684 inject->tool.itrace_start = perf_event__drop_aux,
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300685 inject->tool.ordered_events = true;
686 inject->tool.ordering_requires_timestamps = true;
687 /* Allow space in the header for new attributes */
688 output_data_offset = 4096;
Adrian Hunterf56fb982015-09-25 16:15:55 +0300689 if (inject->strip)
690 strip_init(inject);
Andrew Vagin26a031e2012-08-07 16:56:04 +0400691 }
692
Adrian Hunter99fa2982015-04-30 17:37:25 +0300693 if (!inject->itrace_synth_opts.set)
694 auxtrace_index__free(&session->auxtrace_index);
695
Jiri Olsa34069122013-10-29 19:04:57 +0100696 if (!file_out->is_pipe)
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300697 lseek(fd, output_data_offset, SEEK_SET);
Andrew Vagine558a5b2012-08-07 16:56:02 +0400698
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -0300699 ret = perf_session__process_events(session);
David Carrillo-Cisnerosbb8d5212017-04-10 13:14:26 -0700700 if (ret)
701 return ret;
Tom Zanussi454c4072010-05-01 01:41:20 -0500702
Jiri Olsa34069122013-10-29 19:04:57 +0100703 if (!file_out->is_pipe) {
Adrian Hunter640dad42016-03-07 16:44:38 -0300704 if (inject->build_ids)
Adrian Huntere38b43c2014-07-14 13:02:34 +0300705 perf_header__set_feat(&session->header,
706 HEADER_BUILD_ID);
Adrian Hunter640dad42016-03-07 16:44:38 -0300707 /*
708 * Keep all buildids when there is unprocessed AUX data because
709 * it is not known which ones the AUX trace hits.
710 */
711 if (perf_header__has_feat(&session->header, HEADER_BUILD_ID) &&
712 inject->have_auxtrace && !inject->itrace_synth_opts.set)
713 dsos__hit_all(session);
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300714 /*
715 * The AUX areas have been removed and replaced with
Adrian Hunter73117302015-09-25 16:15:54 +0300716 * synthesized hardware events, so clear the feature flag and
717 * remove the evsel.
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300718 */
Adrian Hunter051a01b2015-09-25 16:15:43 +0300719 if (inject->itrace_synth_opts.set) {
Adrian Hunter73117302015-09-25 16:15:54 +0300720 struct perf_evsel *evsel;
721
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300722 perf_header__clear_feat(&session->header,
723 HEADER_AUXTRACE);
Adrian Hunter051a01b2015-09-25 16:15:43 +0300724 if (inject->itrace_synth_opts.last_branch)
725 perf_header__set_feat(&session->header,
726 HEADER_BRANCH_STACK);
Adrian Hunter73117302015-09-25 16:15:54 +0300727 evsel = perf_evlist__id2evsel_strict(session->evlist,
728 inject->aux_id);
729 if (evsel) {
730 pr_debug("Deleting %s\n",
731 perf_evsel__name(evsel));
732 perf_evlist__remove(session->evlist, evsel);
733 perf_evsel__delete(evsel);
734 }
Adrian Hunterf56fb982015-09-25 16:15:55 +0300735 if (inject->strip)
736 strip_fini(inject);
Adrian Hunter051a01b2015-09-25 16:15:43 +0300737 }
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300738 session->header.data_offset = output_data_offset;
Andrew Vagine558a5b2012-08-07 16:56:02 +0400739 session->header.data_size = inject->bytes_written;
Namhyung Kim42aa2762015-01-29 17:06:48 +0900740 perf_session__write_header(session, session->evlist, fd, true);
Andrew Vagine558a5b2012-08-07 16:56:02 +0400741 }
742
Tom Zanussi454c4072010-05-01 01:41:20 -0500743 return ret;
744}
745
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -0300746int cmd_inject(int argc, const char **argv)
Tom Zanussi454c4072010-05-01 01:41:20 -0500747{
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300748 struct perf_inject inject = {
749 .tool = {
750 .sample = perf_event__repipe_sample,
751 .mmap = perf_event__repipe,
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200752 .mmap2 = perf_event__repipe,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300753 .comm = perf_event__repipe,
754 .fork = perf_event__repipe,
755 .exit = perf_event__repipe,
756 .lost = perf_event__repipe,
Adrian Hunterd8145b32015-11-13 11:48:32 +0200757 .lost_samples = perf_event__repipe,
Adrian Hunter4a96f7a2015-04-30 17:37:29 +0300758 .aux = perf_event__repipe,
Adrian Hunter0ad21f62015-04-30 17:37:30 +0300759 .itrace_start = perf_event__repipe,
Adrian Hunter02860392015-07-21 12:44:03 +0300760 .context_switch = perf_event__repipe,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300761 .read = perf_event__repipe_sample,
762 .throttle = perf_event__repipe,
763 .unthrottle = perf_event__repipe,
764 .attr = perf_event__repipe_attr,
Adrian Hunter47c3d102013-07-04 16:20:21 +0300765 .tracing_data = perf_event__repipe_op2_synth,
Adrian Huntercd17a9b2015-04-21 12:21:54 +0300766 .auxtrace_info = perf_event__repipe_op2_synth,
767 .auxtrace = perf_event__repipe_auxtrace,
768 .auxtrace_error = perf_event__repipe_op2_synth,
Adrian Hunter46bc29b2016-03-08 10:38:44 +0200769 .time_conv = perf_event__repipe_op2_synth,
Arnaldo Carvalho de Melod704ebd2015-03-03 12:37:54 -0300770 .finished_round = perf_event__repipe_oe_synth,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300771 .build_id = perf_event__repipe_op2_synth,
Adrian Hunter3c659ee2014-10-27 15:49:22 +0200772 .id_index = perf_event__repipe_op2_synth,
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300773 },
Andrew Vagine558a5b2012-08-07 16:56:02 +0400774 .input_name = "-",
Andrew Vagin26a031e2012-08-07 16:56:04 +0400775 .samples = LIST_HEAD_INIT(inject.samples),
Jiri Olsa34069122013-10-29 19:04:57 +0100776 .output = {
777 .path = "-",
778 .mode = PERF_DATA_MODE_WRITE,
779 },
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300780 };
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900781 struct perf_data_file file = {
782 .mode = PERF_DATA_MODE_READ,
783 };
784 int ret;
785
Stephane Eranian9b07e272015-11-30 10:02:21 +0100786 struct option options[] = {
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300787 OPT_BOOLEAN('b', "build-ids", &inject.build_ids,
788 "Inject build-ids into the output stream"),
Andrew Vagine558a5b2012-08-07 16:56:02 +0400789 OPT_STRING('i', "input", &inject.input_name, "file",
790 "input file name"),
Jiri Olsa34069122013-10-29 19:04:57 +0100791 OPT_STRING('o', "output", &inject.output.path, "file",
Andrew Vagine558a5b2012-08-07 16:56:02 +0400792 "output file name"),
Andrew Vagin26a031e2012-08-07 16:56:04 +0400793 OPT_BOOLEAN('s', "sched-stat", &inject.sched_stat,
794 "Merge sched-stat and sched-switch for getting events "
795 "where and how long tasks slept"),
Jiri Olsae12b2022016-03-10 17:41:13 +0100796#ifdef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +0100797 OPT_BOOLEAN('j', "jit", &inject.jit_mode, "merge jitdump files into perf.data file"),
Jiri Olsae12b2022016-03-10 17:41:13 +0100798#endif
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300799 OPT_INCR('v', "verbose", &verbose,
800 "be more verbose (show build ids, etc)"),
Adrian Huntera7a2b8b2014-07-22 16:17:38 +0300801 OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name, "file",
802 "kallsyms pathname"),
Yunlong Songccaa4742015-04-02 21:47:11 +0800803 OPT_BOOLEAN('f', "force", &file.force, "don't complain, do it"),
Adrian Hunter0f0aa5e2015-04-09 18:54:00 +0300804 OPT_CALLBACK_OPTARG(0, "itrace", &inject.itrace_synth_opts,
805 NULL, "opts", "Instruction Tracing options",
806 itrace_parse_synth_opts),
Adrian Hunterf56fb982015-09-25 16:15:55 +0300807 OPT_BOOLEAN(0, "strip", &inject.strip,
808 "strip non-synthesized events (use with --itrace)"),
Arnaldo Carvalho de Melo5ded57a2012-09-30 19:54:10 -0300809 OPT_END()
810 };
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300811 const char * const inject_usage[] = {
812 "perf inject [<options>]",
813 NULL
814 };
Jiri Olsae12b2022016-03-10 17:41:13 +0100815#ifndef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +0100816 set_option_nobuild(options, 'j', "jit", "NO_LIBELF=1", true);
817#endif
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300818 argc = parse_options(argc, argv, options, inject_usage, 0);
Tom Zanussi454c4072010-05-01 01:41:20 -0500819
820 /*
821 * Any (unrecognized) arguments left?
822 */
823 if (argc)
Arnaldo Carvalho de Melo002439e2012-10-01 15:20:58 -0300824 usage_with_options(inject_usage, options);
Tom Zanussi454c4072010-05-01 01:41:20 -0500825
Adrian Hunterf56fb982015-09-25 16:15:55 +0300826 if (inject.strip && !inject.itrace_synth_opts.set) {
827 pr_err("--strip option requires --itrace option\n");
828 return -1;
829 }
830
Jiri Olsa34069122013-10-29 19:04:57 +0100831 if (perf_data_file__open(&inject.output)) {
832 perror("failed to create output file");
833 return -1;
Andrew Vagine558a5b2012-08-07 16:56:02 +0400834 }
835
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -0300836 inject.tool.ordered_events = inject.sched_stat;
837
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900838 file.path = inject.input_name;
839 inject.session = perf_session__new(&file, true, &inject.tool);
840 if (inject.session == NULL)
Taeung Song52e028342014-09-24 10:33:37 +0900841 return -1;
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900842
Arnaldo Carvalho de Melo921f3fa2016-01-22 18:41:00 -0300843 if (inject.build_ids) {
844 /*
845 * to make sure the mmap records are ordered correctly
846 * and so that the correct especially due to jitted code
847 * mmaps. We cannot generate the buildid hit list and
848 * inject the jit mmaps at the same time for now.
849 */
850 inject.tool.ordered_events = true;
851 inject.tool.ordering_requires_timestamps = true;
852 }
Jiri Olsae12b2022016-03-10 17:41:13 +0100853#ifdef HAVE_JITDUMP
Stephane Eranian9b07e272015-11-30 10:02:21 +0100854 if (inject.jit_mode) {
Stephane Eranian9b07e272015-11-30 10:02:21 +0100855 inject.tool.mmap2 = perf_event__jit_repipe_mmap2;
856 inject.tool.mmap = perf_event__jit_repipe_mmap;
857 inject.tool.ordered_events = true;
858 inject.tool.ordering_requires_timestamps = true;
859 /*
860 * JIT MMAP injection injects all MMAP events in one go, so it
861 * does not obey finished_round semantics.
862 */
863 inject.tool.finished_round = perf_event__drop_oe;
864 }
865#endif
Taeung Song9fedfb02015-06-30 17:15:20 +0900866 ret = symbol__init(&inject.session->header.env);
867 if (ret < 0)
868 goto out_delete;
Tom Zanussi454c4072010-05-01 01:41:20 -0500869
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900870 ret = __cmd_inject(&inject);
871
Taeung Song9fedfb02015-06-30 17:15:20 +0900872out_delete:
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900873 perf_session__delete(inject.session);
Namhyung Kim1cb8bdc2014-08-12 15:40:37 +0900874 return ret;
Tom Zanussi454c4072010-05-01 01:41:20 -0500875}