Tom Zanussi | 454c407 | 2010-05-01 01:41:20 -0500 | [diff] [blame] | 1 | /* |
| 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 Vagin | 26a031e | 2012-08-07 16:56:04 +0400 | [diff] [blame] | 11 | #include "util/color.h" |
| 12 | #include "util/evlist.h" |
| 13 | #include "util/evsel.h" |
Tom Zanussi | 454c407 | 2010-05-01 01:41:20 -0500 | [diff] [blame] | 14 | #include "util/session.h" |
Arnaldo Carvalho de Melo | 45694aa | 2011-11-28 08:30:20 -0200 | [diff] [blame] | 15 | #include "util/tool.h" |
Tom Zanussi | 454c407 | 2010-05-01 01:41:20 -0500 | [diff] [blame] | 16 | #include "util/debug.h" |
Andrew Vagin | 54a3cf5 | 2012-08-07 16:56:05 +0400 | [diff] [blame] | 17 | #include "util/build-id.h" |
Tom Zanussi | 454c407 | 2010-05-01 01:41:20 -0500 | [diff] [blame] | 18 | |
| 19 | #include "util/parse-options.h" |
| 20 | |
Andrew Vagin | 26a031e | 2012-08-07 16:56:04 +0400 | [diff] [blame] | 21 | #include <linux/list.h> |
| 22 | |
Arnaldo Carvalho de Melo | 5ded57a | 2012-09-30 19:54:10 -0300 | [diff] [blame] | 23 | struct perf_inject { |
| 24 | struct perf_tool tool; |
| 25 | bool build_ids; |
Andrew Vagin | 26a031e | 2012-08-07 16:56:04 +0400 | [diff] [blame] | 26 | bool sched_stat; |
Andrew Vagin | e558a5b | 2012-08-07 16:56:02 +0400 | [diff] [blame] | 27 | const char *input_name; |
| 28 | int pipe_output, |
| 29 | output; |
| 30 | u64 bytes_written; |
Andrew Vagin | 26a031e | 2012-08-07 16:56:04 +0400 | [diff] [blame] | 31 | struct list_head samples; |
| 32 | }; |
| 33 | |
| 34 | struct event_entry { |
| 35 | struct list_head node; |
| 36 | u32 tid; |
| 37 | union perf_event event[0]; |
Arnaldo Carvalho de Melo | 5ded57a | 2012-09-30 19:54:10 -0300 | [diff] [blame] | 38 | }; |
Tom Zanussi | 454c407 | 2010-05-01 01:41:20 -0500 | [diff] [blame] | 39 | |
Andrew Vagin | e558a5b | 2012-08-07 16:56:02 +0400 | [diff] [blame] | 40 | static int perf_event__repipe_synth(struct perf_tool *tool, |
Adrian Hunter | 63c2c9f | 2013-07-04 16:20:20 +0300 | [diff] [blame] | 41 | union perf_event *event) |
Tom Zanussi | 454c407 | 2010-05-01 01:41:20 -0500 | [diff] [blame] | 42 | { |
Andrew Vagin | e558a5b | 2012-08-07 16:56:02 +0400 | [diff] [blame] | 43 | struct perf_inject *inject = container_of(tool, struct perf_inject, tool); |
Tom Zanussi | 454c407 | 2010-05-01 01:41:20 -0500 | [diff] [blame] | 44 | uint32_t size; |
| 45 | void *buf = event; |
| 46 | |
| 47 | size = event->header.size; |
| 48 | |
| 49 | while (size) { |
Andrew Vagin | e558a5b | 2012-08-07 16:56:02 +0400 | [diff] [blame] | 50 | int ret = write(inject->output, buf, size); |
Tom Zanussi | 454c407 | 2010-05-01 01:41:20 -0500 | [diff] [blame] | 51 | if (ret < 0) |
| 52 | return -errno; |
| 53 | |
| 54 | size -= ret; |
| 55 | buf += ret; |
Andrew Vagin | e558a5b | 2012-08-07 16:56:02 +0400 | [diff] [blame] | 56 | inject->bytes_written += ret; |
Tom Zanussi | 454c407 | 2010-05-01 01:41:20 -0500 | [diff] [blame] | 57 | } |
| 58 | |
| 59 | return 0; |
| 60 | } |
| 61 | |
Arnaldo Carvalho de Melo | 45694aa | 2011-11-28 08:30:20 -0200 | [diff] [blame] | 62 | static int perf_event__repipe_op2_synth(struct perf_tool *tool, |
Arnaldo Carvalho de Melo | 743eb86 | 2011-11-28 07:56:39 -0200 | [diff] [blame] | 63 | union perf_event *event, |
Irina Tirdea | 1d037ca | 2012-09-11 01:15:03 +0300 | [diff] [blame] | 64 | struct perf_session *session |
| 65 | __maybe_unused) |
Arnaldo Carvalho de Melo | d20deb6 | 2011-11-25 08:19:45 -0200 | [diff] [blame] | 66 | { |
Adrian Hunter | 63c2c9f | 2013-07-04 16:20:20 +0300 | [diff] [blame] | 67 | return perf_event__repipe_synth(tool, event); |
Arnaldo Carvalho de Melo | 743eb86 | 2011-11-28 07:56:39 -0200 | [diff] [blame] | 68 | } |
| 69 | |
Adrian Hunter | 47c3d10 | 2013-07-04 16:20:21 +0300 | [diff] [blame] | 70 | static int perf_event__repipe_attr(struct perf_tool *tool, |
| 71 | union perf_event *event, |
| 72 | struct perf_evlist **pevlist) |
Arnaldo Carvalho de Melo | 10d0f08 | 2011-11-11 22:45:41 -0200 | [diff] [blame] | 73 | { |
Stephane Eranian | 1a1ed1b | 2012-05-15 13:28:11 +0200 | [diff] [blame] | 74 | int ret; |
Adrian Hunter | 47c3d10 | 2013-07-04 16:20:21 +0300 | [diff] [blame] | 75 | |
| 76 | ret = perf_event__process_attr(tool, event, pevlist); |
Stephane Eranian | 1a1ed1b | 2012-05-15 13:28:11 +0200 | [diff] [blame] | 77 | if (ret) |
| 78 | return ret; |
| 79 | |
Adrian Hunter | 47c3d10 | 2013-07-04 16:20:21 +0300 | [diff] [blame] | 80 | return perf_event__repipe_synth(tool, event); |
Arnaldo Carvalho de Melo | 10d0f08 | 2011-11-11 22:45:41 -0200 | [diff] [blame] | 81 | } |
| 82 | |
Arnaldo Carvalho de Melo | 45694aa | 2011-11-28 08:30:20 -0200 | [diff] [blame] | 83 | static int perf_event__repipe(struct perf_tool *tool, |
Arnaldo Carvalho de Melo | d20deb6 | 2011-11-25 08:19:45 -0200 | [diff] [blame] | 84 | union perf_event *event, |
Irina Tirdea | 1d037ca | 2012-09-11 01:15:03 +0300 | [diff] [blame] | 85 | struct perf_sample *sample __maybe_unused, |
Adrian Hunter | 63c2c9f | 2013-07-04 16:20:20 +0300 | [diff] [blame] | 86 | struct machine *machine __maybe_unused) |
Arnaldo Carvalho de Melo | 640c03c | 2010-12-02 14:10:21 -0200 | [diff] [blame] | 87 | { |
Adrian Hunter | 63c2c9f | 2013-07-04 16:20:20 +0300 | [diff] [blame] | 88 | return perf_event__repipe_synth(tool, event); |
Arnaldo Carvalho de Melo | 640c03c | 2010-12-02 14:10:21 -0200 | [diff] [blame] | 89 | } |
| 90 | |
Andrew Vagin | 26a031e | 2012-08-07 16:56:04 +0400 | [diff] [blame] | 91 | typedef int (*inject_handler)(struct perf_tool *tool, |
| 92 | union perf_event *event, |
| 93 | struct perf_sample *sample, |
| 94 | struct perf_evsel *evsel, |
| 95 | struct machine *machine); |
| 96 | |
Arnaldo Carvalho de Melo | 45694aa | 2011-11-28 08:30:20 -0200 | [diff] [blame] | 97 | static int perf_event__repipe_sample(struct perf_tool *tool, |
Arnaldo Carvalho de Melo | d20deb6 | 2011-11-25 08:19:45 -0200 | [diff] [blame] | 98 | union perf_event *event, |
Andrew Vagin | 26a031e | 2012-08-07 16:56:04 +0400 | [diff] [blame] | 99 | struct perf_sample *sample, |
| 100 | struct perf_evsel *evsel, |
| 101 | struct machine *machine) |
Arnaldo Carvalho de Melo | 9e69c21 | 2011-03-15 15:44:01 -0300 | [diff] [blame] | 102 | { |
Andrew Vagin | 26a031e | 2012-08-07 16:56:04 +0400 | [diff] [blame] | 103 | if (evsel->handler.func) { |
| 104 | inject_handler f = evsel->handler.func; |
| 105 | return f(tool, event, sample, evsel, machine); |
| 106 | } |
| 107 | |
Andrew Vagin | 54a3cf5 | 2012-08-07 16:56:05 +0400 | [diff] [blame] | 108 | build_id__mark_dso_hit(tool, event, sample, evsel, machine); |
| 109 | |
Adrian Hunter | 63c2c9f | 2013-07-04 16:20:20 +0300 | [diff] [blame] | 110 | return perf_event__repipe_synth(tool, event); |
Arnaldo Carvalho de Melo | 9e69c21 | 2011-03-15 15:44:01 -0300 | [diff] [blame] | 111 | } |
| 112 | |
Arnaldo Carvalho de Melo | 45694aa | 2011-11-28 08:30:20 -0200 | [diff] [blame] | 113 | static int perf_event__repipe_mmap(struct perf_tool *tool, |
Arnaldo Carvalho de Melo | d20deb6 | 2011-11-25 08:19:45 -0200 | [diff] [blame] | 114 | union perf_event *event, |
Arnaldo Carvalho de Melo | 8115d60 | 2011-01-29 14:01:45 -0200 | [diff] [blame] | 115 | struct perf_sample *sample, |
Arnaldo Carvalho de Melo | 743eb86 | 2011-11-28 07:56:39 -0200 | [diff] [blame] | 116 | struct machine *machine) |
Tom Zanussi | 454c407 | 2010-05-01 01:41:20 -0500 | [diff] [blame] | 117 | { |
| 118 | int err; |
| 119 | |
Arnaldo Carvalho de Melo | 45694aa | 2011-11-28 08:30:20 -0200 | [diff] [blame] | 120 | err = perf_event__process_mmap(tool, event, sample, machine); |
| 121 | perf_event__repipe(tool, event, sample, machine); |
Tom Zanussi | 454c407 | 2010-05-01 01:41:20 -0500 | [diff] [blame] | 122 | |
| 123 | return err; |
| 124 | } |
| 125 | |
Arnaldo Carvalho de Melo | f62d3f0 | 2012-10-06 15:44:59 -0300 | [diff] [blame] | 126 | static int perf_event__repipe_fork(struct perf_tool *tool, |
Arnaldo Carvalho de Melo | d20deb6 | 2011-11-25 08:19:45 -0200 | [diff] [blame] | 127 | union perf_event *event, |
Arnaldo Carvalho de Melo | 8115d60 | 2011-01-29 14:01:45 -0200 | [diff] [blame] | 128 | struct perf_sample *sample, |
Arnaldo Carvalho de Melo | 743eb86 | 2011-11-28 07:56:39 -0200 | [diff] [blame] | 129 | struct machine *machine) |
Tom Zanussi | 454c407 | 2010-05-01 01:41:20 -0500 | [diff] [blame] | 130 | { |
| 131 | int err; |
| 132 | |
Arnaldo Carvalho de Melo | f62d3f0 | 2012-10-06 15:44:59 -0300 | [diff] [blame] | 133 | err = perf_event__process_fork(tool, event, sample, machine); |
Arnaldo Carvalho de Melo | 45694aa | 2011-11-28 08:30:20 -0200 | [diff] [blame] | 134 | perf_event__repipe(tool, event, sample, machine); |
Tom Zanussi | 454c407 | 2010-05-01 01:41:20 -0500 | [diff] [blame] | 135 | |
| 136 | return err; |
| 137 | } |
| 138 | |
Adrian Hunter | 47c3d10 | 2013-07-04 16:20:21 +0300 | [diff] [blame] | 139 | static int perf_event__repipe_tracing_data(struct perf_tool *tool, |
| 140 | union perf_event *event, |
Arnaldo Carvalho de Melo | 8115d60 | 2011-01-29 14:01:45 -0200 | [diff] [blame] | 141 | struct perf_session *session) |
Tom Zanussi | 454c407 | 2010-05-01 01:41:20 -0500 | [diff] [blame] | 142 | { |
| 143 | int err; |
| 144 | |
Adrian Hunter | 47c3d10 | 2013-07-04 16:20:21 +0300 | [diff] [blame] | 145 | perf_event__repipe_synth(tool, event); |
| 146 | err = perf_event__process_tracing_data(tool, event, session); |
Tom Zanussi | 454c407 | 2010-05-01 01:41:20 -0500 | [diff] [blame] | 147 | |
| 148 | return err; |
| 149 | } |
| 150 | |
Arnaldo Carvalho de Melo | 090f720 | 2010-05-02 19:46:36 -0300 | [diff] [blame] | 151 | static int dso__read_build_id(struct dso *self) |
Tom Zanussi | 454c407 | 2010-05-01 01:41:20 -0500 | [diff] [blame] | 152 | { |
Arnaldo Carvalho de Melo | 090f720 | 2010-05-02 19:46:36 -0300 | [diff] [blame] | 153 | if (self->has_build_id) |
| 154 | return 0; |
Tom Zanussi | 454c407 | 2010-05-01 01:41:20 -0500 | [diff] [blame] | 155 | |
Arnaldo Carvalho de Melo | 090f720 | 2010-05-02 19:46:36 -0300 | [diff] [blame] | 156 | if (filename__read_build_id(self->long_name, self->build_id, |
| 157 | sizeof(self->build_id)) > 0) { |
| 158 | self->has_build_id = true; |
| 159 | return 0; |
Tom Zanussi | 454c407 | 2010-05-01 01:41:20 -0500 | [diff] [blame] | 160 | } |
| 161 | |
Arnaldo Carvalho de Melo | 090f720 | 2010-05-02 19:46:36 -0300 | [diff] [blame] | 162 | return -1; |
| 163 | } |
Tom Zanussi | 454c407 | 2010-05-01 01:41:20 -0500 | [diff] [blame] | 164 | |
Arnaldo Carvalho de Melo | 45694aa | 2011-11-28 08:30:20 -0200 | [diff] [blame] | 165 | static int dso__inject_build_id(struct dso *self, struct perf_tool *tool, |
Arnaldo Carvalho de Melo | 743eb86 | 2011-11-28 07:56:39 -0200 | [diff] [blame] | 166 | struct machine *machine) |
Arnaldo Carvalho de Melo | 090f720 | 2010-05-02 19:46:36 -0300 | [diff] [blame] | 167 | { |
| 168 | u16 misc = PERF_RECORD_MISC_USER; |
Arnaldo Carvalho de Melo | 090f720 | 2010-05-02 19:46:36 -0300 | [diff] [blame] | 169 | int err; |
Tom Zanussi | 454c407 | 2010-05-01 01:41:20 -0500 | [diff] [blame] | 170 | |
Arnaldo Carvalho de Melo | 090f720 | 2010-05-02 19:46:36 -0300 | [diff] [blame] | 171 | if (dso__read_build_id(self) < 0) { |
| 172 | pr_debug("no build_id found for %s\n", self->long_name); |
| 173 | return -1; |
| 174 | } |
Tom Zanussi | 454c407 | 2010-05-01 01:41:20 -0500 | [diff] [blame] | 175 | |
Arnaldo Carvalho de Melo | 090f720 | 2010-05-02 19:46:36 -0300 | [diff] [blame] | 176 | if (self->kernel) |
| 177 | misc = PERF_RECORD_MISC_KERNEL; |
| 178 | |
Arnaldo Carvalho de Melo | 45694aa | 2011-11-28 08:30:20 -0200 | [diff] [blame] | 179 | err = perf_event__synthesize_build_id(tool, self, misc, perf_event__repipe, |
Arnaldo Carvalho de Melo | 743eb86 | 2011-11-28 07:56:39 -0200 | [diff] [blame] | 180 | machine); |
Arnaldo Carvalho de Melo | 090f720 | 2010-05-02 19:46:36 -0300 | [diff] [blame] | 181 | if (err) { |
| 182 | pr_err("Can't synthesize build_id event for %s\n", self->long_name); |
Tom Zanussi | 454c407 | 2010-05-01 01:41:20 -0500 | [diff] [blame] | 183 | return -1; |
| 184 | } |
| 185 | |
| 186 | return 0; |
| 187 | } |
| 188 | |
Arnaldo Carvalho de Melo | 45694aa | 2011-11-28 08:30:20 -0200 | [diff] [blame] | 189 | static int perf_event__inject_buildid(struct perf_tool *tool, |
Arnaldo Carvalho de Melo | d20deb6 | 2011-11-25 08:19:45 -0200 | [diff] [blame] | 190 | union perf_event *event, |
Arnaldo Carvalho de Melo | 8115d60 | 2011-01-29 14:01:45 -0200 | [diff] [blame] | 191 | struct perf_sample *sample, |
Irina Tirdea | 1d037ca | 2012-09-11 01:15:03 +0300 | [diff] [blame] | 192 | struct perf_evsel *evsel __maybe_unused, |
Arnaldo Carvalho de Melo | 743eb86 | 2011-11-28 07:56:39 -0200 | [diff] [blame] | 193 | struct machine *machine) |
Tom Zanussi | 454c407 | 2010-05-01 01:41:20 -0500 | [diff] [blame] | 194 | { |
| 195 | struct addr_location al; |
| 196 | struct thread *thread; |
| 197 | u8 cpumode; |
Tom Zanussi | 454c407 | 2010-05-01 01:41:20 -0500 | [diff] [blame] | 198 | |
| 199 | cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK; |
| 200 | |
Adrian Hunter | ef89325 | 2013-08-27 11:23:06 +0300 | [diff] [blame] | 201 | thread = machine__findnew_thread(machine, sample->pid, sample->pid); |
Tom Zanussi | 454c407 | 2010-05-01 01:41:20 -0500 | [diff] [blame] | 202 | if (thread == NULL) { |
| 203 | pr_err("problem processing %d event, skipping it.\n", |
| 204 | event->header.type); |
Tom Zanussi | 454c407 | 2010-05-01 01:41:20 -0500 | [diff] [blame] | 205 | goto repipe; |
| 206 | } |
| 207 | |
Arnaldo Carvalho de Melo | 743eb86 | 2011-11-28 07:56:39 -0200 | [diff] [blame] | 208 | thread__find_addr_map(thread, machine, cpumode, MAP__FUNCTION, |
Adrian Hunter | ef89325 | 2013-08-27 11:23:06 +0300 | [diff] [blame] | 209 | sample->ip, &al); |
Tom Zanussi | 454c407 | 2010-05-01 01:41:20 -0500 | [diff] [blame] | 210 | |
| 211 | if (al.map != NULL) { |
| 212 | if (!al.map->dso->hit) { |
| 213 | al.map->dso->hit = 1; |
Arnaldo Carvalho de Melo | 090f720 | 2010-05-02 19:46:36 -0300 | [diff] [blame] | 214 | if (map__load(al.map, NULL) >= 0) { |
Arnaldo Carvalho de Melo | 45694aa | 2011-11-28 08:30:20 -0200 | [diff] [blame] | 215 | dso__inject_build_id(al.map->dso, tool, machine); |
Arnaldo Carvalho de Melo | 090f720 | 2010-05-02 19:46:36 -0300 | [diff] [blame] | 216 | /* |
| 217 | * If this fails, too bad, let the other side |
| 218 | * account this as unresolved. |
| 219 | */ |
Namhyung Kim | 393be2e | 2012-08-06 13:41:21 +0900 | [diff] [blame] | 220 | } else { |
Namhyung Kim | 29a0fc9 | 2012-09-28 18:31:59 +0900 | [diff] [blame] | 221 | #ifdef LIBELF_SUPPORT |
Tom Zanussi | 454c407 | 2010-05-01 01:41:20 -0500 | [diff] [blame] | 222 | pr_warning("no symbols found in %s, maybe " |
| 223 | "install a debug package?\n", |
| 224 | al.map->dso->long_name); |
Namhyung Kim | 393be2e | 2012-08-06 13:41:21 +0900 | [diff] [blame] | 225 | #endif |
| 226 | } |
Tom Zanussi | 454c407 | 2010-05-01 01:41:20 -0500 | [diff] [blame] | 227 | } |
| 228 | } |
| 229 | |
| 230 | repipe: |
Arnaldo Carvalho de Melo | 45694aa | 2011-11-28 08:30:20 -0200 | [diff] [blame] | 231 | perf_event__repipe(tool, event, sample, machine); |
Arnaldo Carvalho de Melo | 090f720 | 2010-05-02 19:46:36 -0300 | [diff] [blame] | 232 | return 0; |
Tom Zanussi | 454c407 | 2010-05-01 01:41:20 -0500 | [diff] [blame] | 233 | } |
| 234 | |
Andrew Vagin | 26a031e | 2012-08-07 16:56:04 +0400 | [diff] [blame] | 235 | static int perf_inject__sched_process_exit(struct perf_tool *tool, |
| 236 | union perf_event *event __maybe_unused, |
| 237 | struct perf_sample *sample, |
| 238 | struct perf_evsel *evsel __maybe_unused, |
| 239 | struct machine *machine __maybe_unused) |
| 240 | { |
| 241 | struct perf_inject *inject = container_of(tool, struct perf_inject, tool); |
| 242 | struct event_entry *ent; |
| 243 | |
| 244 | list_for_each_entry(ent, &inject->samples, node) { |
| 245 | if (sample->tid == ent->tid) { |
| 246 | list_del_init(&ent->node); |
| 247 | free(ent); |
| 248 | break; |
| 249 | } |
| 250 | } |
| 251 | |
| 252 | return 0; |
| 253 | } |
| 254 | |
| 255 | static int perf_inject__sched_switch(struct perf_tool *tool, |
| 256 | union perf_event *event, |
| 257 | struct perf_sample *sample, |
| 258 | struct perf_evsel *evsel, |
| 259 | struct machine *machine) |
| 260 | { |
| 261 | struct perf_inject *inject = container_of(tool, struct perf_inject, tool); |
| 262 | struct event_entry *ent; |
| 263 | |
| 264 | perf_inject__sched_process_exit(tool, event, sample, evsel, machine); |
| 265 | |
| 266 | ent = malloc(event->header.size + sizeof(struct event_entry)); |
| 267 | if (ent == NULL) { |
| 268 | color_fprintf(stderr, PERF_COLOR_RED, |
| 269 | "Not enough memory to process sched switch event!"); |
| 270 | return -1; |
| 271 | } |
| 272 | |
| 273 | ent->tid = sample->tid; |
| 274 | memcpy(&ent->event, event, event->header.size); |
| 275 | list_add(&ent->node, &inject->samples); |
| 276 | return 0; |
| 277 | } |
| 278 | |
| 279 | static int perf_inject__sched_stat(struct perf_tool *tool, |
| 280 | union perf_event *event __maybe_unused, |
| 281 | struct perf_sample *sample, |
| 282 | struct perf_evsel *evsel, |
| 283 | struct machine *machine) |
| 284 | { |
| 285 | struct event_entry *ent; |
| 286 | union perf_event *event_sw; |
| 287 | struct perf_sample sample_sw; |
| 288 | struct perf_inject *inject = container_of(tool, struct perf_inject, tool); |
| 289 | u32 pid = perf_evsel__intval(evsel, sample, "pid"); |
| 290 | |
| 291 | list_for_each_entry(ent, &inject->samples, node) { |
| 292 | if (pid == ent->tid) |
| 293 | goto found; |
| 294 | } |
| 295 | |
| 296 | return 0; |
| 297 | found: |
| 298 | event_sw = &ent->event[0]; |
| 299 | perf_evsel__parse_sample(evsel, event_sw, &sample_sw); |
| 300 | |
| 301 | sample_sw.period = sample->period; |
| 302 | sample_sw.time = sample->time; |
| 303 | perf_event__synthesize_sample(event_sw, evsel->attr.sample_type, |
Adrian Hunter | d03f217 | 2013-08-27 11:23:11 +0300 | [diff] [blame^] | 304 | evsel->attr.sample_regs_user, |
| 305 | evsel->attr.read_format, &sample_sw, |
| 306 | false); |
Andrew Vagin | 54a3cf5 | 2012-08-07 16:56:05 +0400 | [diff] [blame] | 307 | build_id__mark_dso_hit(tool, event_sw, &sample_sw, evsel, machine); |
Andrew Vagin | 26a031e | 2012-08-07 16:56:04 +0400 | [diff] [blame] | 308 | return perf_event__repipe(tool, event_sw, &sample_sw, machine); |
| 309 | } |
| 310 | |
Tom Zanussi | 454c407 | 2010-05-01 01:41:20 -0500 | [diff] [blame] | 311 | extern volatile int session_done; |
| 312 | |
Irina Tirdea | 1d037ca | 2012-09-11 01:15:03 +0300 | [diff] [blame] | 313 | static void sig_handler(int sig __maybe_unused) |
Tom Zanussi | 454c407 | 2010-05-01 01:41:20 -0500 | [diff] [blame] | 314 | { |
| 315 | session_done = 1; |
| 316 | } |
| 317 | |
Andrew Vagin | 26a031e | 2012-08-07 16:56:04 +0400 | [diff] [blame] | 318 | static int perf_evsel__check_stype(struct perf_evsel *evsel, |
| 319 | u64 sample_type, const char *sample_msg) |
| 320 | { |
| 321 | struct perf_event_attr *attr = &evsel->attr; |
| 322 | const char *name = perf_evsel__name(evsel); |
| 323 | |
| 324 | if (!(attr->sample_type & sample_type)) { |
| 325 | pr_err("Samples for %s event do not have %s attribute set.", |
| 326 | name, sample_msg); |
| 327 | return -EINVAL; |
| 328 | } |
| 329 | |
| 330 | return 0; |
| 331 | } |
| 332 | |
Arnaldo Carvalho de Melo | 5ded57a | 2012-09-30 19:54:10 -0300 | [diff] [blame] | 333 | static int __cmd_inject(struct perf_inject *inject) |
Tom Zanussi | 454c407 | 2010-05-01 01:41:20 -0500 | [diff] [blame] | 334 | { |
| 335 | struct perf_session *session; |
| 336 | int ret = -EINVAL; |
| 337 | |
| 338 | signal(SIGINT, sig_handler); |
| 339 | |
Andrew Vagin | 54a3cf5 | 2012-08-07 16:56:05 +0400 | [diff] [blame] | 340 | if (inject->build_ids || inject->sched_stat) { |
Arnaldo Carvalho de Melo | 5ded57a | 2012-09-30 19:54:10 -0300 | [diff] [blame] | 341 | inject->tool.mmap = perf_event__repipe_mmap; |
Arnaldo Carvalho de Melo | f62d3f0 | 2012-10-06 15:44:59 -0300 | [diff] [blame] | 342 | inject->tool.fork = perf_event__repipe_fork; |
Arnaldo Carvalho de Melo | 5ded57a | 2012-09-30 19:54:10 -0300 | [diff] [blame] | 343 | inject->tool.tracing_data = perf_event__repipe_tracing_data; |
Tom Zanussi | 454c407 | 2010-05-01 01:41:20 -0500 | [diff] [blame] | 344 | } |
| 345 | |
Andrew Vagin | e558a5b | 2012-08-07 16:56:02 +0400 | [diff] [blame] | 346 | session = perf_session__new(inject->input_name, O_RDONLY, false, true, &inject->tool); |
Tom Zanussi | 454c407 | 2010-05-01 01:41:20 -0500 | [diff] [blame] | 347 | if (session == NULL) |
| 348 | return -ENOMEM; |
| 349 | |
Andrew Vagin | 54a3cf5 | 2012-08-07 16:56:05 +0400 | [diff] [blame] | 350 | if (inject->build_ids) { |
| 351 | inject->tool.sample = perf_event__inject_buildid; |
| 352 | } else if (inject->sched_stat) { |
Andrew Vagin | 26a031e | 2012-08-07 16:56:04 +0400 | [diff] [blame] | 353 | struct perf_evsel *evsel; |
| 354 | |
| 355 | inject->tool.ordered_samples = true; |
| 356 | |
| 357 | list_for_each_entry(evsel, &session->evlist->entries, node) { |
| 358 | const char *name = perf_evsel__name(evsel); |
| 359 | |
| 360 | if (!strcmp(name, "sched:sched_switch")) { |
| 361 | if (perf_evsel__check_stype(evsel, PERF_SAMPLE_TID, "TID")) |
| 362 | return -EINVAL; |
| 363 | |
| 364 | evsel->handler.func = perf_inject__sched_switch; |
| 365 | } else if (!strcmp(name, "sched:sched_process_exit")) |
| 366 | evsel->handler.func = perf_inject__sched_process_exit; |
| 367 | else if (!strncmp(name, "sched:sched_stat_", 17)) |
| 368 | evsel->handler.func = perf_inject__sched_stat; |
| 369 | } |
| 370 | } |
| 371 | |
Andrew Vagin | e558a5b | 2012-08-07 16:56:02 +0400 | [diff] [blame] | 372 | if (!inject->pipe_output) |
| 373 | lseek(inject->output, session->header.data_offset, SEEK_SET); |
| 374 | |
Arnaldo Carvalho de Melo | 5ded57a | 2012-09-30 19:54:10 -0300 | [diff] [blame] | 375 | ret = perf_session__process_events(session, &inject->tool); |
Tom Zanussi | 454c407 | 2010-05-01 01:41:20 -0500 | [diff] [blame] | 376 | |
Andrew Vagin | e558a5b | 2012-08-07 16:56:02 +0400 | [diff] [blame] | 377 | if (!inject->pipe_output) { |
| 378 | session->header.data_size = inject->bytes_written; |
| 379 | perf_session__write_header(session, session->evlist, inject->output, true); |
| 380 | } |
| 381 | |
Tom Zanussi | 454c407 | 2010-05-01 01:41:20 -0500 | [diff] [blame] | 382 | perf_session__delete(session); |
| 383 | |
| 384 | return ret; |
| 385 | } |
| 386 | |
Irina Tirdea | 1d037ca | 2012-09-11 01:15:03 +0300 | [diff] [blame] | 387 | int cmd_inject(int argc, const char **argv, const char *prefix __maybe_unused) |
Tom Zanussi | 454c407 | 2010-05-01 01:41:20 -0500 | [diff] [blame] | 388 | { |
Arnaldo Carvalho de Melo | 5ded57a | 2012-09-30 19:54:10 -0300 | [diff] [blame] | 389 | struct perf_inject inject = { |
| 390 | .tool = { |
| 391 | .sample = perf_event__repipe_sample, |
| 392 | .mmap = perf_event__repipe, |
| 393 | .comm = perf_event__repipe, |
| 394 | .fork = perf_event__repipe, |
| 395 | .exit = perf_event__repipe, |
| 396 | .lost = perf_event__repipe, |
| 397 | .read = perf_event__repipe_sample, |
| 398 | .throttle = perf_event__repipe, |
| 399 | .unthrottle = perf_event__repipe, |
| 400 | .attr = perf_event__repipe_attr, |
Adrian Hunter | 47c3d10 | 2013-07-04 16:20:21 +0300 | [diff] [blame] | 401 | .tracing_data = perf_event__repipe_op2_synth, |
Adrian Hunter | a609bda | 2013-07-04 16:20:22 +0300 | [diff] [blame] | 402 | .finished_round = perf_event__repipe_op2_synth, |
Arnaldo Carvalho de Melo | 5ded57a | 2012-09-30 19:54:10 -0300 | [diff] [blame] | 403 | .build_id = perf_event__repipe_op2_synth, |
| 404 | }, |
Andrew Vagin | e558a5b | 2012-08-07 16:56:02 +0400 | [diff] [blame] | 405 | .input_name = "-", |
Andrew Vagin | 26a031e | 2012-08-07 16:56:04 +0400 | [diff] [blame] | 406 | .samples = LIST_HEAD_INIT(inject.samples), |
Arnaldo Carvalho de Melo | 5ded57a | 2012-09-30 19:54:10 -0300 | [diff] [blame] | 407 | }; |
Andrew Vagin | e558a5b | 2012-08-07 16:56:02 +0400 | [diff] [blame] | 408 | const char *output_name = "-"; |
Arnaldo Carvalho de Melo | 5ded57a | 2012-09-30 19:54:10 -0300 | [diff] [blame] | 409 | const struct option options[] = { |
| 410 | OPT_BOOLEAN('b', "build-ids", &inject.build_ids, |
| 411 | "Inject build-ids into the output stream"), |
Andrew Vagin | e558a5b | 2012-08-07 16:56:02 +0400 | [diff] [blame] | 412 | OPT_STRING('i', "input", &inject.input_name, "file", |
| 413 | "input file name"), |
| 414 | OPT_STRING('o', "output", &output_name, "file", |
| 415 | "output file name"), |
Andrew Vagin | 26a031e | 2012-08-07 16:56:04 +0400 | [diff] [blame] | 416 | OPT_BOOLEAN('s', "sched-stat", &inject.sched_stat, |
| 417 | "Merge sched-stat and sched-switch for getting events " |
| 418 | "where and how long tasks slept"), |
Arnaldo Carvalho de Melo | 5ded57a | 2012-09-30 19:54:10 -0300 | [diff] [blame] | 419 | OPT_INCR('v', "verbose", &verbose, |
| 420 | "be more verbose (show build ids, etc)"), |
| 421 | OPT_END() |
| 422 | }; |
Arnaldo Carvalho de Melo | 002439e | 2012-10-01 15:20:58 -0300 | [diff] [blame] | 423 | const char * const inject_usage[] = { |
| 424 | "perf inject [<options>]", |
| 425 | NULL |
| 426 | }; |
Arnaldo Carvalho de Melo | 5ded57a | 2012-09-30 19:54:10 -0300 | [diff] [blame] | 427 | |
Arnaldo Carvalho de Melo | 002439e | 2012-10-01 15:20:58 -0300 | [diff] [blame] | 428 | argc = parse_options(argc, argv, options, inject_usage, 0); |
Tom Zanussi | 454c407 | 2010-05-01 01:41:20 -0500 | [diff] [blame] | 429 | |
| 430 | /* |
| 431 | * Any (unrecognized) arguments left? |
| 432 | */ |
| 433 | if (argc) |
Arnaldo Carvalho de Melo | 002439e | 2012-10-01 15:20:58 -0300 | [diff] [blame] | 434 | usage_with_options(inject_usage, options); |
Tom Zanussi | 454c407 | 2010-05-01 01:41:20 -0500 | [diff] [blame] | 435 | |
Andrew Vagin | e558a5b | 2012-08-07 16:56:02 +0400 | [diff] [blame] | 436 | if (!strcmp(output_name, "-")) { |
| 437 | inject.pipe_output = 1; |
| 438 | inject.output = STDOUT_FILENO; |
| 439 | } else { |
| 440 | inject.output = open(output_name, O_CREAT | O_WRONLY | O_TRUNC, |
| 441 | S_IRUSR | S_IWUSR); |
| 442 | if (inject.output < 0) { |
| 443 | perror("failed to create output file"); |
| 444 | return -1; |
| 445 | } |
| 446 | } |
| 447 | |
Tom Zanussi | 454c407 | 2010-05-01 01:41:20 -0500 | [diff] [blame] | 448 | if (symbol__init() < 0) |
| 449 | return -1; |
| 450 | |
Arnaldo Carvalho de Melo | 5ded57a | 2012-09-30 19:54:10 -0300 | [diff] [blame] | 451 | return __cmd_inject(&inject); |
Tom Zanussi | 454c407 | 2010-05-01 01:41:20 -0500 | [diff] [blame] | 452 | } |