2 * db-export.c: Support for exporting data suitable for import to a database
3 * Copyright (c) 2014, Intel Corporation.
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
25 #include "thread-stack.h"
26 #include "db-export.h"
28 struct deferred_export
{
29 struct list_head node
;
33 static int db_export__deferred(struct db_export
*dbe
)
35 struct deferred_export
*de
;
38 while (!list_empty(&dbe
->deferred
)) {
39 de
= list_entry(dbe
->deferred
.next
, struct deferred_export
,
41 err
= dbe
->export_comm(dbe
, de
->comm
);
51 static void db_export__free_deferred(struct db_export
*dbe
)
53 struct deferred_export
*de
;
55 while (!list_empty(&dbe
->deferred
)) {
56 de
= list_entry(dbe
->deferred
.next
, struct deferred_export
,
63 static int db_export__defer_comm(struct db_export
*dbe
, struct comm
*comm
)
65 struct deferred_export
*de
;
67 de
= zalloc(sizeof(struct deferred_export
));
72 list_add_tail(&de
->node
, &dbe
->deferred
);
77 int db_export__init(struct db_export
*dbe
)
79 memset(dbe
, 0, sizeof(struct db_export
));
80 INIT_LIST_HEAD(&dbe
->deferred
);
84 int db_export__flush(struct db_export
*dbe
)
86 return db_export__deferred(dbe
);
89 void db_export__exit(struct db_export
*dbe
)
91 db_export__free_deferred(dbe
);
92 call_return_processor__free(dbe
->crp
);
96 int db_export__evsel(struct db_export
*dbe
, struct perf_evsel
*evsel
)
101 evsel
->db_id
= ++dbe
->evsel_last_db_id
;
103 if (dbe
->export_evsel
)
104 return dbe
->export_evsel(dbe
, evsel
);
109 int db_export__machine(struct db_export
*dbe
, struct machine
*machine
)
114 machine
->db_id
= ++dbe
->machine_last_db_id
;
116 if (dbe
->export_machine
)
117 return dbe
->export_machine(dbe
, machine
);
122 int db_export__thread(struct db_export
*dbe
, struct thread
*thread
,
123 struct machine
*machine
, struct comm
*comm
)
125 u64 main_thread_db_id
= 0;
131 thread
->db_id
= ++dbe
->thread_last_db_id
;
133 if (thread
->pid_
!= -1) {
134 struct thread
*main_thread
;
136 if (thread
->pid_
== thread
->tid
) {
137 main_thread
= thread
;
139 main_thread
= machine__findnew_thread(machine
,
144 err
= db_export__thread(dbe
, main_thread
, machine
,
149 err
= db_export__comm_thread(dbe
, comm
, thread
);
154 main_thread_db_id
= main_thread
->db_id
;
157 if (dbe
->export_thread
)
158 return dbe
->export_thread(dbe
, thread
, main_thread_db_id
,
164 int db_export__comm(struct db_export
*dbe
, struct comm
*comm
,
165 struct thread
*main_thread
)
172 comm
->db_id
= ++dbe
->comm_last_db_id
;
174 if (dbe
->export_comm
) {
175 if (main_thread
->comm_set
)
176 err
= dbe
->export_comm(dbe
, comm
);
178 err
= db_export__defer_comm(dbe
, comm
);
183 return db_export__comm_thread(dbe
, comm
, main_thread
);
186 int db_export__comm_thread(struct db_export
*dbe
, struct comm
*comm
,
187 struct thread
*thread
)
191 db_id
= ++dbe
->comm_thread_last_db_id
;
193 if (dbe
->export_comm_thread
)
194 return dbe
->export_comm_thread(dbe
, db_id
, comm
, thread
);
199 int db_export__dso(struct db_export
*dbe
, struct dso
*dso
,
200 struct machine
*machine
)
205 dso
->db_id
= ++dbe
->dso_last_db_id
;
208 return dbe
->export_dso(dbe
, dso
, machine
);
213 int db_export__symbol(struct db_export
*dbe
, struct symbol
*sym
,
216 u64
*sym_db_id
= symbol__priv(sym
);
221 *sym_db_id
= ++dbe
->symbol_last_db_id
;
223 if (dbe
->export_symbol
)
224 return dbe
->export_symbol(dbe
, sym
, dso
);
229 static struct thread
*get_main_thread(struct machine
*machine
, struct thread
*thread
)
231 if (thread
->pid_
== thread
->tid
)
234 if (thread
->pid_
== -1)
237 return machine__find_thread(machine
, thread
->pid_
, thread
->pid_
);
240 static int db_ids_from_al(struct db_export
*dbe
, struct addr_location
*al
,
241 u64
*dso_db_id
, u64
*sym_db_id
, u64
*offset
)
246 struct dso
*dso
= al
->map
->dso
;
248 err
= db_export__dso(dbe
, dso
, al
->machine
);
251 *dso_db_id
= dso
->db_id
;
254 al
->sym
= symbol__new(al
->addr
, 0, 0, "unknown");
256 symbols__insert(&dso
->symbols
[al
->map
->type
],
261 u64
*db_id
= symbol__priv(al
->sym
);
263 err
= db_export__symbol(dbe
, al
->sym
, dso
);
267 *offset
= al
->addr
- al
->sym
->start
;
274 int db_export__branch_type(struct db_export
*dbe
, u32 branch_type
,
277 if (dbe
->export_branch_type
)
278 return dbe
->export_branch_type(dbe
, branch_type
, name
);
283 int db_export__sample(struct db_export
*dbe
, union perf_event
*event
,
284 struct perf_sample
*sample
, struct perf_evsel
*evsel
,
285 struct thread
*thread
, struct addr_location
*al
)
287 struct export_sample es
= {
294 struct thread
*main_thread
;
295 struct comm
*comm
= NULL
;
298 err
= db_export__evsel(dbe
, evsel
);
302 err
= db_export__machine(dbe
, al
->machine
);
306 main_thread
= get_main_thread(al
->machine
, thread
);
308 comm
= machine__thread_exec_comm(al
->machine
, main_thread
);
310 err
= db_export__thread(dbe
, thread
, al
->machine
, comm
);
315 err
= db_export__comm(dbe
, comm
, main_thread
);
318 es
.comm_db_id
= comm
->db_id
;
321 es
.db_id
= ++dbe
->sample_last_db_id
;
323 err
= db_ids_from_al(dbe
, al
, &es
.dso_db_id
, &es
.sym_db_id
, &es
.offset
);
327 if ((evsel
->attr
.sample_type
& PERF_SAMPLE_ADDR
) &&
328 sample_addr_correlates_sym(&evsel
->attr
)) {
329 struct addr_location addr_al
;
331 perf_event__preprocess_sample_addr(event
, sample
, thread
, &addr_al
);
332 err
= db_ids_from_al(dbe
, &addr_al
, &es
.addr_dso_db_id
,
333 &es
.addr_sym_db_id
, &es
.addr_offset
);
337 err
= thread_stack__process(thread
, comm
, sample
, al
,
345 if (dbe
->export_sample
)
346 return dbe
->export_sample(dbe
, &es
);
356 {PERF_IP_FLAG_BRANCH
| PERF_IP_FLAG_CALL
, "call"},
357 {PERF_IP_FLAG_BRANCH
| PERF_IP_FLAG_RETURN
, "return"},
358 {PERF_IP_FLAG_BRANCH
| PERF_IP_FLAG_CONDITIONAL
, "conditional jump"},
359 {PERF_IP_FLAG_BRANCH
, "unconditional jump"},
360 {PERF_IP_FLAG_BRANCH
| PERF_IP_FLAG_CALL
| PERF_IP_FLAG_INTERRUPT
,
361 "software interrupt"},
362 {PERF_IP_FLAG_BRANCH
| PERF_IP_FLAG_RETURN
| PERF_IP_FLAG_INTERRUPT
,
363 "return from interrupt"},
364 {PERF_IP_FLAG_BRANCH
| PERF_IP_FLAG_CALL
| PERF_IP_FLAG_SYSCALLRET
,
366 {PERF_IP_FLAG_BRANCH
| PERF_IP_FLAG_RETURN
| PERF_IP_FLAG_SYSCALLRET
,
367 "return from system call"},
368 {PERF_IP_FLAG_BRANCH
| PERF_IP_FLAG_ASYNC
, "asynchronous branch"},
369 {PERF_IP_FLAG_BRANCH
| PERF_IP_FLAG_CALL
| PERF_IP_FLAG_ASYNC
|
370 PERF_IP_FLAG_INTERRUPT
, "hardware interrupt"},
371 {PERF_IP_FLAG_BRANCH
| PERF_IP_FLAG_TX_ABORT
, "transaction abort"},
372 {PERF_IP_FLAG_BRANCH
| PERF_IP_FLAG_TRACE_BEGIN
, "trace begin"},
373 {PERF_IP_FLAG_BRANCH
| PERF_IP_FLAG_TRACE_END
, "trace end"},
377 int db_export__branch_types(struct db_export
*dbe
)
381 for (i
= 0; branch_types
[i
].name
; i
++) {
382 err
= db_export__branch_type(dbe
, branch_types
[i
].branch_type
,
383 branch_types
[i
].name
);
390 int db_export__call_path(struct db_export
*dbe
, struct call_path
*cp
)
398 err
= db_export__call_path(dbe
, cp
->parent
);
403 cp
->db_id
= ++dbe
->call_path_last_db_id
;
405 if (dbe
->export_call_path
)
406 return dbe
->export_call_path(dbe
, cp
);
411 int db_export__call_return(struct db_export
*dbe
, struct call_return
*cr
)
418 err
= db_export__call_path(dbe
, cr
->cp
);
422 cr
->db_id
= ++dbe
->call_return_last_db_id
;
424 if (dbe
->export_call_return
)
425 return dbe
->export_call_return(dbe
, cr
);