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 event__repipe_synth(event_t
*event
,
20 struct perf_session
*session __used
)
25 size
= event
->header
.size
;
28 int ret
= write(STDOUT_FILENO
, buf
, size
);
39 static int event__repipe(event_t
*event
, struct sample_data
*sample __used
,
40 struct perf_session
*session
)
42 return event__repipe_synth(event
, session
);
45 static int event__repipe_mmap(event_t
*self
, struct sample_data
*sample
,
46 struct perf_session
*session
)
50 err
= event__process_mmap(self
, sample
, session
);
51 event__repipe(self
, sample
, session
);
56 static int event__repipe_task(event_t
*self
, struct sample_data
*sample
,
57 struct perf_session
*session
)
61 err
= event__process_task(self
, sample
, session
);
62 event__repipe(self
, sample
, session
);
67 static int event__repipe_tracing_data(event_t
*self
,
68 struct perf_session
*session
)
72 event__repipe_synth(self
, session
);
73 err
= event__process_tracing_data(self
, session
);
78 static int dso__read_build_id(struct dso
*self
)
80 if (self
->has_build_id
)
83 if (filename__read_build_id(self
->long_name
, self
->build_id
,
84 sizeof(self
->build_id
)) > 0) {
85 self
->has_build_id
= true;
92 static int dso__inject_build_id(struct dso
*self
, struct perf_session
*session
)
94 u16 misc
= PERF_RECORD_MISC_USER
;
95 struct machine
*machine
;
98 if (dso__read_build_id(self
) < 0) {
99 pr_debug("no build_id found for %s\n", self
->long_name
);
103 machine
= perf_session__find_host_machine(session
);
104 if (machine
== NULL
) {
105 pr_err("Can't find machine for session\n");
110 misc
= PERF_RECORD_MISC_KERNEL
;
112 err
= event__synthesize_build_id(self
, misc
, event__repipe
,
115 pr_err("Can't synthesize build_id event for %s\n", self
->long_name
);
122 static int event__inject_buildid(event_t
*event
, struct sample_data
*sample
,
123 struct perf_session
*session
)
125 struct addr_location al
;
126 struct thread
*thread
;
129 cpumode
= event
->header
.misc
& PERF_RECORD_MISC_CPUMODE_MASK
;
131 thread
= perf_session__findnew(session
, event
->ip
.pid
);
132 if (thread
== NULL
) {
133 pr_err("problem processing %d event, skipping it.\n",
138 thread__find_addr_map(thread
, session
, cpumode
, MAP__FUNCTION
,
139 event
->ip
.pid
, event
->ip
.ip
, &al
);
141 if (al
.map
!= NULL
) {
142 if (!al
.map
->dso
->hit
) {
143 al
.map
->dso
->hit
= 1;
144 if (map__load(al
.map
, NULL
) >= 0) {
145 dso__inject_build_id(al
.map
->dso
, session
);
147 * If this fails, too bad, let the other side
148 * account this as unresolved.
151 pr_warning("no symbols found in %s, maybe "
152 "install a debug package?\n",
153 al
.map
->dso
->long_name
);
158 event__repipe(event
, sample
, session
);
162 struct perf_event_ops inject_ops
= {
163 .sample
= event__repipe
,
164 .mmap
= event__repipe
,
165 .comm
= event__repipe
,
166 .fork
= event__repipe
,
167 .exit
= event__repipe
,
168 .lost
= event__repipe
,
169 .read
= event__repipe
,
170 .throttle
= event__repipe
,
171 .unthrottle
= event__repipe
,
172 .attr
= event__repipe_synth
,
173 .event_type
= event__repipe_synth
,
174 .tracing_data
= event__repipe_synth
,
175 .build_id
= event__repipe_synth
,
178 extern volatile int session_done
;
180 static void sig_handler(int sig
__attribute__((__unused__
)))
185 static int __cmd_inject(void)
187 struct perf_session
*session
;
190 signal(SIGINT
, sig_handler
);
192 if (inject_build_ids
) {
193 inject_ops
.sample
= event__inject_buildid
;
194 inject_ops
.mmap
= event__repipe_mmap
;
195 inject_ops
.fork
= event__repipe_task
;
196 inject_ops
.tracing_data
= event__repipe_tracing_data
;
199 session
= perf_session__new(input_name
, O_RDONLY
, false, true, &inject_ops
);
203 ret
= perf_session__process_events(session
, &inject_ops
);
205 perf_session__delete(session
);
210 static const char * const report_usage
[] = {
211 "perf inject [<options>]",
215 static const struct option options
[] = {
216 OPT_BOOLEAN('b', "build-ids", &inject_build_ids
,
217 "Inject build-ids into the output stream"),
218 OPT_INCR('v', "verbose", &verbose
,
219 "be more verbose (show build ids, etc)"),
223 int cmd_inject(int argc
, const char **argv
, const char *prefix __used
)
225 argc
= parse_options(argc
, argv
, options
, report_usage
, 0);
228 * Any (unrecognized) arguments left?
231 usage_with_options(report_usage
, options
);
233 if (symbol__init() < 0)
236 return __cmd_inject();