Merge tag 'gpio-v3.13-3' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw...
[linux-2.6.git] / tools / perf / builtin-inject.c
blob6a2508589460bfc1fec37c10163cf44b95a2ddfc
1 /*
2 * builtin-inject.c
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"
10 #include "perf.h"
11 #include "util/color.h"
12 #include "util/evlist.h"
13 #include "util/evsel.h"
14 #include "util/session.h"
15 #include "util/tool.h"
16 #include "util/debug.h"
17 #include "util/build-id.h"
18 #include "util/data.h"
20 #include "util/parse-options.h"
22 #include <linux/list.h>
24 struct perf_inject {
25 struct perf_tool tool;
26 bool build_ids;
27 bool sched_stat;
28 const char *input_name;
29 int pipe_output,
30 output;
31 u64 bytes_written;
32 struct list_head samples;
35 struct event_entry {
36 struct list_head node;
37 u32 tid;
38 union perf_event event[0];
41 static int perf_event__repipe_synth(struct perf_tool *tool,
42 union perf_event *event)
44 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
45 uint32_t size;
46 void *buf = event;
48 size = event->header.size;
50 while (size) {
51 int ret = write(inject->output, buf, size);
52 if (ret < 0)
53 return -errno;
55 size -= ret;
56 buf += ret;
57 inject->bytes_written += ret;
60 return 0;
63 static int perf_event__repipe_op2_synth(struct perf_tool *tool,
64 union perf_event *event,
65 struct perf_session *session
66 __maybe_unused)
68 return perf_event__repipe_synth(tool, event);
71 static int perf_event__repipe_attr(struct perf_tool *tool,
72 union perf_event *event,
73 struct perf_evlist **pevlist)
75 struct perf_inject *inject = container_of(tool, struct perf_inject,
76 tool);
77 int ret;
79 ret = perf_event__process_attr(tool, event, pevlist);
80 if (ret)
81 return ret;
83 if (!inject->pipe_output)
84 return 0;
86 return perf_event__repipe_synth(tool, event);
89 static int perf_event__repipe(struct perf_tool *tool,
90 union perf_event *event,
91 struct perf_sample *sample __maybe_unused,
92 struct machine *machine __maybe_unused)
94 return perf_event__repipe_synth(tool, event);
97 typedef 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);
103 static int perf_event__repipe_sample(struct perf_tool *tool,
104 union perf_event *event,
105 struct perf_sample *sample,
106 struct perf_evsel *evsel,
107 struct machine *machine)
109 if (evsel->handler) {
110 inject_handler f = evsel->handler;
111 return f(tool, event, sample, evsel, machine);
114 build_id__mark_dso_hit(tool, event, sample, evsel, machine);
116 return perf_event__repipe_synth(tool, event);
119 static int perf_event__repipe_mmap(struct perf_tool *tool,
120 union perf_event *event,
121 struct perf_sample *sample,
122 struct machine *machine)
124 int err;
126 err = perf_event__process_mmap(tool, event, sample, machine);
127 perf_event__repipe(tool, event, sample, machine);
129 return err;
132 static int perf_event__repipe_mmap2(struct perf_tool *tool,
133 union perf_event *event,
134 struct perf_sample *sample,
135 struct machine *machine)
137 int err;
139 err = perf_event__process_mmap2(tool, event, sample, machine);
140 perf_event__repipe(tool, event, sample, machine);
142 return err;
145 static int perf_event__repipe_fork(struct perf_tool *tool,
146 union perf_event *event,
147 struct perf_sample *sample,
148 struct machine *machine)
150 int err;
152 err = perf_event__process_fork(tool, event, sample, machine);
153 perf_event__repipe(tool, event, sample, machine);
155 return err;
158 static int perf_event__repipe_tracing_data(struct perf_tool *tool,
159 union perf_event *event,
160 struct perf_session *session)
162 int err;
164 perf_event__repipe_synth(tool, event);
165 err = perf_event__process_tracing_data(tool, event, session);
167 return err;
170 static int dso__read_build_id(struct dso *dso)
172 if (dso->has_build_id)
173 return 0;
175 if (filename__read_build_id(dso->long_name, dso->build_id,
176 sizeof(dso->build_id)) > 0) {
177 dso->has_build_id = true;
178 return 0;
181 return -1;
184 static int dso__inject_build_id(struct dso *dso, struct perf_tool *tool,
185 struct machine *machine)
187 u16 misc = PERF_RECORD_MISC_USER;
188 int err;
190 if (dso__read_build_id(dso) < 0) {
191 pr_debug("no build_id found for %s\n", dso->long_name);
192 return -1;
195 if (dso->kernel)
196 misc = PERF_RECORD_MISC_KERNEL;
198 err = perf_event__synthesize_build_id(tool, dso, misc, perf_event__repipe,
199 machine);
200 if (err) {
201 pr_err("Can't synthesize build_id event for %s\n", dso->long_name);
202 return -1;
205 return 0;
208 static int perf_event__inject_buildid(struct perf_tool *tool,
209 union perf_event *event,
210 struct perf_sample *sample,
211 struct perf_evsel *evsel __maybe_unused,
212 struct machine *machine)
214 struct addr_location al;
215 struct thread *thread;
216 u8 cpumode;
218 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
220 thread = machine__findnew_thread(machine, sample->pid, sample->pid);
221 if (thread == NULL) {
222 pr_err("problem processing %d event, skipping it.\n",
223 event->header.type);
224 goto repipe;
227 thread__find_addr_map(thread, machine, cpumode, MAP__FUNCTION,
228 sample->ip, &al);
230 if (al.map != NULL) {
231 if (!al.map->dso->hit) {
232 al.map->dso->hit = 1;
233 if (map__load(al.map, NULL) >= 0) {
234 dso__inject_build_id(al.map->dso, tool, machine);
236 * If this fails, too bad, let the other side
237 * account this as unresolved.
239 } else {
240 #ifdef HAVE_LIBELF_SUPPORT
241 pr_warning("no symbols found in %s, maybe "
242 "install a debug package?\n",
243 al.map->dso->long_name);
244 #endif
249 repipe:
250 perf_event__repipe(tool, event, sample, machine);
251 return 0;
254 static int perf_inject__sched_process_exit(struct perf_tool *tool,
255 union perf_event *event __maybe_unused,
256 struct perf_sample *sample,
257 struct perf_evsel *evsel __maybe_unused,
258 struct machine *machine __maybe_unused)
260 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
261 struct event_entry *ent;
263 list_for_each_entry(ent, &inject->samples, node) {
264 if (sample->tid == ent->tid) {
265 list_del_init(&ent->node);
266 free(ent);
267 break;
271 return 0;
274 static int perf_inject__sched_switch(struct perf_tool *tool,
275 union perf_event *event,
276 struct perf_sample *sample,
277 struct perf_evsel *evsel,
278 struct machine *machine)
280 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
281 struct event_entry *ent;
283 perf_inject__sched_process_exit(tool, event, sample, evsel, machine);
285 ent = malloc(event->header.size + sizeof(struct event_entry));
286 if (ent == NULL) {
287 color_fprintf(stderr, PERF_COLOR_RED,
288 "Not enough memory to process sched switch event!");
289 return -1;
292 ent->tid = sample->tid;
293 memcpy(&ent->event, event, event->header.size);
294 list_add(&ent->node, &inject->samples);
295 return 0;
298 static int perf_inject__sched_stat(struct perf_tool *tool,
299 union perf_event *event __maybe_unused,
300 struct perf_sample *sample,
301 struct perf_evsel *evsel,
302 struct machine *machine)
304 struct event_entry *ent;
305 union perf_event *event_sw;
306 struct perf_sample sample_sw;
307 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
308 u32 pid = perf_evsel__intval(evsel, sample, "pid");
310 list_for_each_entry(ent, &inject->samples, node) {
311 if (pid == ent->tid)
312 goto found;
315 return 0;
316 found:
317 event_sw = &ent->event[0];
318 perf_evsel__parse_sample(evsel, event_sw, &sample_sw);
320 sample_sw.period = sample->period;
321 sample_sw.time = sample->time;
322 perf_event__synthesize_sample(event_sw, evsel->attr.sample_type,
323 evsel->attr.sample_regs_user,
324 evsel->attr.read_format, &sample_sw,
325 false);
326 build_id__mark_dso_hit(tool, event_sw, &sample_sw, evsel, machine);
327 return perf_event__repipe(tool, event_sw, &sample_sw, machine);
330 static void sig_handler(int sig __maybe_unused)
332 session_done = 1;
335 static int perf_evsel__check_stype(struct perf_evsel *evsel,
336 u64 sample_type, const char *sample_msg)
338 struct perf_event_attr *attr = &evsel->attr;
339 const char *name = perf_evsel__name(evsel);
341 if (!(attr->sample_type & sample_type)) {
342 pr_err("Samples for %s event do not have %s attribute set.",
343 name, sample_msg);
344 return -EINVAL;
347 return 0;
350 static int __cmd_inject(struct perf_inject *inject)
352 struct perf_session *session;
353 int ret = -EINVAL;
354 struct perf_data_file file = {
355 .path = inject->input_name,
356 .mode = PERF_DATA_MODE_READ,
359 signal(SIGINT, sig_handler);
361 if (inject->build_ids || inject->sched_stat) {
362 inject->tool.mmap = perf_event__repipe_mmap;
363 inject->tool.mmap2 = perf_event__repipe_mmap2;
364 inject->tool.fork = perf_event__repipe_fork;
365 inject->tool.tracing_data = perf_event__repipe_tracing_data;
368 session = perf_session__new(&file, true, &inject->tool);
369 if (session == NULL)
370 return -ENOMEM;
372 if (inject->build_ids) {
373 inject->tool.sample = perf_event__inject_buildid;
374 } else if (inject->sched_stat) {
375 struct perf_evsel *evsel;
377 inject->tool.ordered_samples = true;
379 list_for_each_entry(evsel, &session->evlist->entries, node) {
380 const char *name = perf_evsel__name(evsel);
382 if (!strcmp(name, "sched:sched_switch")) {
383 if (perf_evsel__check_stype(evsel, PERF_SAMPLE_TID, "TID"))
384 return -EINVAL;
386 evsel->handler = perf_inject__sched_switch;
387 } else if (!strcmp(name, "sched:sched_process_exit"))
388 evsel->handler = perf_inject__sched_process_exit;
389 else if (!strncmp(name, "sched:sched_stat_", 17))
390 evsel->handler = perf_inject__sched_stat;
394 if (!inject->pipe_output)
395 lseek(inject->output, session->header.data_offset, SEEK_SET);
397 ret = perf_session__process_events(session, &inject->tool);
399 if (!inject->pipe_output) {
400 session->header.data_size = inject->bytes_written;
401 perf_session__write_header(session, session->evlist, inject->output, true);
404 perf_session__delete(session);
406 return ret;
409 int cmd_inject(int argc, const char **argv, const char *prefix __maybe_unused)
411 struct perf_inject inject = {
412 .tool = {
413 .sample = perf_event__repipe_sample,
414 .mmap = perf_event__repipe,
415 .mmap2 = perf_event__repipe,
416 .comm = perf_event__repipe,
417 .fork = perf_event__repipe,
418 .exit = perf_event__repipe,
419 .lost = perf_event__repipe,
420 .read = perf_event__repipe_sample,
421 .throttle = perf_event__repipe,
422 .unthrottle = perf_event__repipe,
423 .attr = perf_event__repipe_attr,
424 .tracing_data = perf_event__repipe_op2_synth,
425 .finished_round = perf_event__repipe_op2_synth,
426 .build_id = perf_event__repipe_op2_synth,
428 .input_name = "-",
429 .samples = LIST_HEAD_INIT(inject.samples),
431 const char *output_name = "-";
432 const struct option options[] = {
433 OPT_BOOLEAN('b', "build-ids", &inject.build_ids,
434 "Inject build-ids into the output stream"),
435 OPT_STRING('i', "input", &inject.input_name, "file",
436 "input file name"),
437 OPT_STRING('o', "output", &output_name, "file",
438 "output file name"),
439 OPT_BOOLEAN('s', "sched-stat", &inject.sched_stat,
440 "Merge sched-stat and sched-switch for getting events "
441 "where and how long tasks slept"),
442 OPT_INCR('v', "verbose", &verbose,
443 "be more verbose (show build ids, etc)"),
444 OPT_END()
446 const char * const inject_usage[] = {
447 "perf inject [<options>]",
448 NULL
451 argc = parse_options(argc, argv, options, inject_usage, 0);
454 * Any (unrecognized) arguments left?
456 if (argc)
457 usage_with_options(inject_usage, options);
459 if (!strcmp(output_name, "-")) {
460 inject.pipe_output = 1;
461 inject.output = STDOUT_FILENO;
462 } else {
463 inject.output = open(output_name, O_CREAT | O_WRONLY | O_TRUNC,
464 S_IRUSR | S_IWUSR);
465 if (inject.output < 0) {
466 perror("failed to create output file");
467 return -1;
471 if (symbol__init() < 0)
472 return -1;
474 return __cmd_inject(&inject);