4 * Builtin inject command: Examine the live mode (stdin) event stream
5 * and repipe it to stdout while optionally injecting additional
11 #include "util/session.h"
12 #include "util/debug.h"
14 #include "util/parse-options.h"
16 static char const *input_name
= "-";
17 static bool inject_build_ids
;
19 static int perf_event__repipe_synth(union perf_event
*event
,
20 struct perf_session
*session __used
)
25 size
= event
->header
.size
;
28 int ret
= write(STDOUT_FILENO
, buf
, size
);
39 static int perf_event__repipe(union perf_event
*event
,
40 struct perf_sample
*sample __used
,
41 struct perf_session
*session
)
43 return perf_event__repipe_synth(event
, session
);
46 static int perf_event__repipe_sample(union perf_event
*event
,
47 struct perf_sample
*sample __used
,
48 struct perf_evsel
*evsel __used
,
49 struct perf_session
*session
)
51 return perf_event__repipe_synth(event
, session
);
54 static int perf_event__repipe_mmap(union perf_event
*event
,
55 struct perf_sample
*sample
,
56 struct perf_session
*session
)
60 err
= perf_event__process_mmap(event
, sample
, session
);
61 perf_event__repipe(event
, sample
, session
);
66 static int perf_event__repipe_task(union perf_event
*event
,
67 struct perf_sample
*sample
,
68 struct perf_session
*session
)
72 err
= perf_event__process_task(event
, sample
, session
);
73 perf_event__repipe(event
, sample
, session
);
78 static int perf_event__repipe_tracing_data(union perf_event
*event
,
79 struct perf_session
*session
)
83 perf_event__repipe_synth(event
, session
);
84 err
= perf_event__process_tracing_data(event
, session
);
89 static int dso__read_build_id(struct dso
*self
)
91 if (self
->has_build_id
)
94 if (filename__read_build_id(self
->long_name
, self
->build_id
,
95 sizeof(self
->build_id
)) > 0) {
96 self
->has_build_id
= true;
103 static int dso__inject_build_id(struct dso
*self
, struct perf_session
*session
)
105 u16 misc
= PERF_RECORD_MISC_USER
;
106 struct machine
*machine
;
109 if (dso__read_build_id(self
) < 0) {
110 pr_debug("no build_id found for %s\n", self
->long_name
);
114 machine
= perf_session__find_host_machine(session
);
115 if (machine
== NULL
) {
116 pr_err("Can't find machine for session\n");
121 misc
= PERF_RECORD_MISC_KERNEL
;
123 err
= perf_event__synthesize_build_id(self
, misc
, perf_event__repipe
,
126 pr_err("Can't synthesize build_id event for %s\n", self
->long_name
);
133 static int perf_event__inject_buildid(union perf_event
*event
,
134 struct perf_sample
*sample
,
135 struct perf_evsel
*evsel __used
,
136 struct perf_session
*session
)
138 struct addr_location al
;
139 struct thread
*thread
;
142 cpumode
= event
->header
.misc
& PERF_RECORD_MISC_CPUMODE_MASK
;
144 thread
= perf_session__findnew(session
, event
->ip
.pid
);
145 if (thread
== NULL
) {
146 pr_err("problem processing %d event, skipping it.\n",
151 thread__find_addr_map(thread
, session
, cpumode
, MAP__FUNCTION
,
152 event
->ip
.pid
, event
->ip
.ip
, &al
);
154 if (al
.map
!= NULL
) {
155 if (!al
.map
->dso
->hit
) {
156 al
.map
->dso
->hit
= 1;
157 if (map__load(al
.map
, NULL
) >= 0) {
158 dso__inject_build_id(al
.map
->dso
, session
);
160 * If this fails, too bad, let the other side
161 * account this as unresolved.
164 pr_warning("no symbols found in %s, maybe "
165 "install a debug package?\n",
166 al
.map
->dso
->long_name
);
171 perf_event__repipe(event
, sample
, session
);
175 struct perf_event_ops inject_ops
= {
176 .sample
= perf_event__repipe_sample
,
177 .mmap
= perf_event__repipe
,
178 .comm
= perf_event__repipe
,
179 .fork
= perf_event__repipe
,
180 .exit
= perf_event__repipe
,
181 .lost
= perf_event__repipe
,
182 .read
= perf_event__repipe
,
183 .throttle
= perf_event__repipe
,
184 .unthrottle
= perf_event__repipe
,
185 .attr
= perf_event__repipe_synth
,
186 .event_type
= perf_event__repipe_synth
,
187 .tracing_data
= perf_event__repipe_synth
,
188 .build_id
= perf_event__repipe_synth
,
191 extern volatile int session_done
;
193 static void sig_handler(int sig
__attribute__((__unused__
)))
198 static int __cmd_inject(void)
200 struct perf_session
*session
;
203 signal(SIGINT
, sig_handler
);
205 if (inject_build_ids
) {
206 inject_ops
.sample
= perf_event__inject_buildid
;
207 inject_ops
.mmap
= perf_event__repipe_mmap
;
208 inject_ops
.fork
= perf_event__repipe_task
;
209 inject_ops
.tracing_data
= perf_event__repipe_tracing_data
;
212 session
= perf_session__new(input_name
, O_RDONLY
, false, true, &inject_ops
);
216 ret
= perf_session__process_events(session
, &inject_ops
);
218 perf_session__delete(session
);
223 static const char * const report_usage
[] = {
224 "perf inject [<options>]",
228 static const struct option options
[] = {
229 OPT_BOOLEAN('b', "build-ids", &inject_build_ids
,
230 "Inject build-ids into the output stream"),
231 OPT_INCR('v', "verbose", &verbose
,
232 "be more verbose (show build ids, etc)"),
236 int cmd_inject(int argc
, const char **argv
, const char *prefix __used
)
238 argc
= parse_options(argc
, argv
, options
, report_usage
, 0);
241 * Any (unrecognized) arguments left?
244 usage_with_options(report_usage
, options
);
246 if (symbol__init() < 0)
249 return __cmd_inject();