2 * trace-event-python. Feed trace events to an embedded Python interpreter.
4 * Copyright (C) 2010 Tom Zanussi <tzanussi@gmail.com>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
29 #include <linux/bitmap.h>
31 #include "../../perf.h"
33 #include "../callchain.h"
37 #include "../thread.h"
39 #include "../machine.h"
40 #include "../db-export.h"
41 #include "../thread-stack.h"
42 #include "../trace-event.h"
43 #include "../machine.h"
45 PyMODINIT_FUNC
initperf_trace_context(void);
47 #define FTRACE_MAX_EVENT \
48 ((1 << (sizeof(unsigned short) * 8)) - 1)
50 static DECLARE_BITMAP(events_defined
, FTRACE_MAX_EVENT
);
53 #define N_COMMON_FIELDS 7
55 extern struct scripting_context
*scripting_context
;
57 static char *cur_field_name
;
58 static int zero_flag_atom
;
60 static PyObject
*main_module
, *main_dict
;
64 PyObject
*evsel_handler
;
65 PyObject
*machine_handler
;
66 PyObject
*thread_handler
;
67 PyObject
*comm_handler
;
68 PyObject
*comm_thread_handler
;
69 PyObject
*dso_handler
;
70 PyObject
*symbol_handler
;
71 PyObject
*branch_type_handler
;
72 PyObject
*sample_handler
;
73 PyObject
*call_path_handler
;
74 PyObject
*call_return_handler
;
78 static struct tables tables_global
;
80 static void handler_call_die(const char *handler_name
) NORETURN
;
81 static void handler_call_die(const char *handler_name
)
84 Py_FatalError("problem in Python trace event handler");
85 // Py_FatalError does not return
86 // but we have to make the compiler happy
91 * Insert val into into the dictionary and decrement the reference counter.
92 * This is necessary for dictionaries since PyDict_SetItemString() does not
93 * steal a reference, as opposed to PyTuple_SetItem().
95 static void pydict_set_item_string_decref(PyObject
*dict
, const char *key
, PyObject
*val
)
97 PyDict_SetItemString(dict
, key
, val
);
101 static PyObject
*get_handler(const char *handler_name
)
105 handler
= PyDict_GetItemString(main_dict
, handler_name
);
106 if (handler
&& !PyCallable_Check(handler
))
111 static void call_object(PyObject
*handler
, PyObject
*args
, const char *die_msg
)
115 retval
= PyObject_CallObject(handler
, args
);
117 handler_call_die(die_msg
);
121 static void try_call_object(const char *handler_name
, PyObject
*args
)
125 handler
= get_handler(handler_name
);
127 call_object(handler
, args
, handler_name
);
130 static void define_value(enum print_arg_type field_type
,
132 const char *field_name
,
133 const char *field_value
,
134 const char *field_str
)
136 const char *handler_name
= "define_flag_value";
138 unsigned long long value
;
141 if (field_type
== PRINT_SYMBOL
)
142 handler_name
= "define_symbolic_value";
146 Py_FatalError("couldn't create Python tuple");
148 value
= eval_flag(field_value
);
150 PyTuple_SetItem(t
, n
++, PyString_FromString(ev_name
));
151 PyTuple_SetItem(t
, n
++, PyString_FromString(field_name
));
152 PyTuple_SetItem(t
, n
++, PyInt_FromLong(value
));
153 PyTuple_SetItem(t
, n
++, PyString_FromString(field_str
));
155 try_call_object(handler_name
, t
);
160 static void define_values(enum print_arg_type field_type
,
161 struct print_flag_sym
*field
,
163 const char *field_name
)
165 define_value(field_type
, ev_name
, field_name
, field
->value
,
169 define_values(field_type
, field
->next
, ev_name
, field_name
);
172 static void define_field(enum print_arg_type field_type
,
174 const char *field_name
,
177 const char *handler_name
= "define_flag_field";
181 if (field_type
== PRINT_SYMBOL
)
182 handler_name
= "define_symbolic_field";
184 if (field_type
== PRINT_FLAGS
)
189 Py_FatalError("couldn't create Python tuple");
191 PyTuple_SetItem(t
, n
++, PyString_FromString(ev_name
));
192 PyTuple_SetItem(t
, n
++, PyString_FromString(field_name
));
193 if (field_type
== PRINT_FLAGS
)
194 PyTuple_SetItem(t
, n
++, PyString_FromString(delim
));
196 try_call_object(handler_name
, t
);
201 static void define_event_symbols(struct event_format
*event
,
203 struct print_arg
*args
)
205 switch (args
->type
) {
209 define_value(PRINT_FLAGS
, ev_name
, cur_field_name
, "0",
214 free(cur_field_name
);
215 cur_field_name
= strdup(args
->field
.name
);
218 define_event_symbols(event
, ev_name
, args
->flags
.field
);
219 define_field(PRINT_FLAGS
, ev_name
, cur_field_name
,
221 define_values(PRINT_FLAGS
, args
->flags
.flags
, ev_name
,
225 define_event_symbols(event
, ev_name
, args
->symbol
.field
);
226 define_field(PRINT_SYMBOL
, ev_name
, cur_field_name
, NULL
);
227 define_values(PRINT_SYMBOL
, args
->symbol
.symbols
, ev_name
,
231 define_event_symbols(event
, ev_name
, args
->hex
.field
);
232 define_event_symbols(event
, ev_name
, args
->hex
.size
);
237 define_event_symbols(event
, ev_name
, args
->typecast
.item
);
240 if (strcmp(args
->op
.op
, ":") == 0)
242 define_event_symbols(event
, ev_name
, args
->op
.left
);
243 define_event_symbols(event
, ev_name
, args
->op
.right
);
246 /* gcc warns for these? */
248 case PRINT_DYNAMIC_ARRAY
:
251 /* we should warn... */
256 define_event_symbols(event
, ev_name
, args
->next
);
259 static PyObject
*get_field_numeric_entry(struct event_format
*event
,
260 struct format_field
*field
, void *data
)
262 bool is_array
= field
->flags
& FIELD_IS_ARRAY
;
263 PyObject
*obj
, *list
= NULL
;
264 unsigned long long val
;
265 unsigned int item_size
, n_items
, i
;
268 list
= PyList_New(field
->arraylen
);
269 item_size
= field
->size
/ field
->arraylen
;
270 n_items
= field
->arraylen
;
272 item_size
= field
->size
;
276 for (i
= 0; i
< n_items
; i
++) {
278 val
= read_size(event
, data
+ field
->offset
+ i
* item_size
,
280 if (field
->flags
& FIELD_IS_SIGNED
) {
281 if ((long long)val
>= LONG_MIN
&&
282 (long long)val
<= LONG_MAX
)
283 obj
= PyInt_FromLong(val
);
285 obj
= PyLong_FromLongLong(val
);
288 obj
= PyInt_FromLong(val
);
290 obj
= PyLong_FromUnsignedLongLong(val
);
293 PyList_SET_ITEM(list
, i
, obj
);
301 static PyObject
*python_process_callchain(struct perf_sample
*sample
,
302 struct perf_evsel
*evsel
,
303 struct addr_location
*al
)
307 pylist
= PyList_New(0);
309 Py_FatalError("couldn't create Python list");
311 if (!symbol_conf
.use_callchain
|| !sample
->callchain
)
314 if (thread__resolve_callchain(al
->thread
, evsel
,
316 PERF_MAX_STACK_DEPTH
) != 0) {
317 pr_err("Failed to resolve callchain. Skipping\n");
320 callchain_cursor_commit(&callchain_cursor
);
325 struct callchain_cursor_node
*node
;
326 node
= callchain_cursor_current(&callchain_cursor
);
330 pyelem
= PyDict_New();
332 Py_FatalError("couldn't create Python dictionary");
335 pydict_set_item_string_decref(pyelem
, "ip",
336 PyLong_FromUnsignedLongLong(node
->ip
));
339 PyObject
*pysym
= PyDict_New();
341 Py_FatalError("couldn't create Python dictionary");
342 pydict_set_item_string_decref(pysym
, "start",
343 PyLong_FromUnsignedLongLong(node
->sym
->start
));
344 pydict_set_item_string_decref(pysym
, "end",
345 PyLong_FromUnsignedLongLong(node
->sym
->end
));
346 pydict_set_item_string_decref(pysym
, "binding",
347 PyInt_FromLong(node
->sym
->binding
));
348 pydict_set_item_string_decref(pysym
, "name",
349 PyString_FromStringAndSize(node
->sym
->name
,
350 node
->sym
->namelen
));
351 pydict_set_item_string_decref(pyelem
, "sym", pysym
);
355 struct map
*map
= node
->map
;
356 const char *dsoname
= "[unknown]";
357 if (map
&& map
->dso
&& (map
->dso
->name
|| map
->dso
->long_name
)) {
358 if (symbol_conf
.show_kernel_path
&& map
->dso
->long_name
)
359 dsoname
= map
->dso
->long_name
;
360 else if (map
->dso
->name
)
361 dsoname
= map
->dso
->name
;
363 pydict_set_item_string_decref(pyelem
, "dso",
364 PyString_FromString(dsoname
));
367 callchain_cursor_advance(&callchain_cursor
);
368 PyList_Append(pylist
, pyelem
);
377 static void python_process_tracepoint(struct perf_sample
*sample
,
378 struct perf_evsel
*evsel
,
379 struct thread
*thread
,
380 struct addr_location
*al
)
382 struct event_format
*event
= evsel
->tp_format
;
383 PyObject
*handler
, *context
, *t
, *obj
, *callchain
;
384 PyObject
*dict
= NULL
;
385 static char handler_name
[256];
386 struct format_field
*field
;
390 int cpu
= sample
->cpu
;
391 void *data
= sample
->raw_data
;
392 unsigned long long nsecs
= sample
->time
;
393 const char *comm
= thread__comm_str(thread
);
395 t
= PyTuple_New(MAX_FIELDS
);
397 Py_FatalError("couldn't create Python tuple");
400 die("ug! no event found for type %d", (int)evsel
->attr
.config
);
402 pid
= raw_field_value(event
, "common_pid", data
);
404 sprintf(handler_name
, "%s__%s", event
->system
, event
->name
);
406 if (!test_and_set_bit(event
->id
, events_defined
))
407 define_event_symbols(event
, handler_name
, event
->print_fmt
.args
);
409 handler
= get_handler(handler_name
);
413 Py_FatalError("couldn't create Python dict");
415 s
= nsecs
/ NSECS_PER_SEC
;
416 ns
= nsecs
- s
* NSECS_PER_SEC
;
418 scripting_context
->event_data
= data
;
419 scripting_context
->pevent
= evsel
->tp_format
->pevent
;
421 context
= PyCObject_FromVoidPtr(scripting_context
, NULL
);
423 PyTuple_SetItem(t
, n
++, PyString_FromString(handler_name
));
424 PyTuple_SetItem(t
, n
++, context
);
427 callchain
= python_process_callchain(sample
, evsel
, al
);
430 PyTuple_SetItem(t
, n
++, PyInt_FromLong(cpu
));
431 PyTuple_SetItem(t
, n
++, PyInt_FromLong(s
));
432 PyTuple_SetItem(t
, n
++, PyInt_FromLong(ns
));
433 PyTuple_SetItem(t
, n
++, PyInt_FromLong(pid
));
434 PyTuple_SetItem(t
, n
++, PyString_FromString(comm
));
435 PyTuple_SetItem(t
, n
++, callchain
);
437 pydict_set_item_string_decref(dict
, "common_cpu", PyInt_FromLong(cpu
));
438 pydict_set_item_string_decref(dict
, "common_s", PyInt_FromLong(s
));
439 pydict_set_item_string_decref(dict
, "common_ns", PyInt_FromLong(ns
));
440 pydict_set_item_string_decref(dict
, "common_pid", PyInt_FromLong(pid
));
441 pydict_set_item_string_decref(dict
, "common_comm", PyString_FromString(comm
));
442 pydict_set_item_string_decref(dict
, "common_callchain", callchain
);
444 for (field
= event
->format
.fields
; field
; field
= field
->next
) {
445 if (field
->flags
& FIELD_IS_STRING
) {
447 if (field
->flags
& FIELD_IS_DYNAMIC
) {
448 offset
= *(int *)(data
+ field
->offset
);
451 offset
= field
->offset
;
452 obj
= PyString_FromString((char *)data
+ offset
);
453 } else { /* FIELD_IS_NUMERIC */
454 obj
= get_field_numeric_entry(event
, field
, data
);
457 PyTuple_SetItem(t
, n
++, obj
);
459 pydict_set_item_string_decref(dict
, field
->name
, obj
);
464 PyTuple_SetItem(t
, n
++, dict
);
466 if (_PyTuple_Resize(&t
, n
) == -1)
467 Py_FatalError("error resizing Python tuple");
470 call_object(handler
, t
, handler_name
);
472 try_call_object("trace_unhandled", t
);
479 static PyObject
*tuple_new(unsigned int sz
)
485 Py_FatalError("couldn't create Python tuple");
489 static int tuple_set_u64(PyObject
*t
, unsigned int pos
, u64 val
)
491 #if BITS_PER_LONG == 64
492 return PyTuple_SetItem(t
, pos
, PyInt_FromLong(val
));
494 #if BITS_PER_LONG == 32
495 return PyTuple_SetItem(t
, pos
, PyLong_FromLongLong(val
));
499 static int tuple_set_s32(PyObject
*t
, unsigned int pos
, s32 val
)
501 return PyTuple_SetItem(t
, pos
, PyInt_FromLong(val
));
504 static int tuple_set_string(PyObject
*t
, unsigned int pos
, const char *s
)
506 return PyTuple_SetItem(t
, pos
, PyString_FromString(s
));
509 static int python_export_evsel(struct db_export
*dbe
, struct perf_evsel
*evsel
)
511 struct tables
*tables
= container_of(dbe
, struct tables
, dbe
);
516 tuple_set_u64(t
, 0, evsel
->db_id
);
517 tuple_set_string(t
, 1, perf_evsel__name(evsel
));
519 call_object(tables
->evsel_handler
, t
, "evsel_table");
526 static int python_export_machine(struct db_export
*dbe
,
527 struct machine
*machine
)
529 struct tables
*tables
= container_of(dbe
, struct tables
, dbe
);
534 tuple_set_u64(t
, 0, machine
->db_id
);
535 tuple_set_s32(t
, 1, machine
->pid
);
536 tuple_set_string(t
, 2, machine
->root_dir
? machine
->root_dir
: "");
538 call_object(tables
->machine_handler
, t
, "machine_table");
545 static int python_export_thread(struct db_export
*dbe
, struct thread
*thread
,
546 u64 main_thread_db_id
, struct machine
*machine
)
548 struct tables
*tables
= container_of(dbe
, struct tables
, dbe
);
553 tuple_set_u64(t
, 0, thread
->db_id
);
554 tuple_set_u64(t
, 1, machine
->db_id
);
555 tuple_set_u64(t
, 2, main_thread_db_id
);
556 tuple_set_s32(t
, 3, thread
->pid_
);
557 tuple_set_s32(t
, 4, thread
->tid
);
559 call_object(tables
->thread_handler
, t
, "thread_table");
566 static int python_export_comm(struct db_export
*dbe
, struct comm
*comm
)
568 struct tables
*tables
= container_of(dbe
, struct tables
, dbe
);
573 tuple_set_u64(t
, 0, comm
->db_id
);
574 tuple_set_string(t
, 1, comm__str(comm
));
576 call_object(tables
->comm_handler
, t
, "comm_table");
583 static int python_export_comm_thread(struct db_export
*dbe
, u64 db_id
,
584 struct comm
*comm
, struct thread
*thread
)
586 struct tables
*tables
= container_of(dbe
, struct tables
, dbe
);
591 tuple_set_u64(t
, 0, db_id
);
592 tuple_set_u64(t
, 1, comm
->db_id
);
593 tuple_set_u64(t
, 2, thread
->db_id
);
595 call_object(tables
->comm_thread_handler
, t
, "comm_thread_table");
602 static int python_export_dso(struct db_export
*dbe
, struct dso
*dso
,
603 struct machine
*machine
)
605 struct tables
*tables
= container_of(dbe
, struct tables
, dbe
);
606 char sbuild_id
[BUILD_ID_SIZE
* 2 + 1];
609 build_id__sprintf(dso
->build_id
, sizeof(dso
->build_id
), sbuild_id
);
613 tuple_set_u64(t
, 0, dso
->db_id
);
614 tuple_set_u64(t
, 1, machine
->db_id
);
615 tuple_set_string(t
, 2, dso
->short_name
);
616 tuple_set_string(t
, 3, dso
->long_name
);
617 tuple_set_string(t
, 4, sbuild_id
);
619 call_object(tables
->dso_handler
, t
, "dso_table");
626 static int python_export_symbol(struct db_export
*dbe
, struct symbol
*sym
,
629 struct tables
*tables
= container_of(dbe
, struct tables
, dbe
);
630 u64
*sym_db_id
= symbol__priv(sym
);
635 tuple_set_u64(t
, 0, *sym_db_id
);
636 tuple_set_u64(t
, 1, dso
->db_id
);
637 tuple_set_u64(t
, 2, sym
->start
);
638 tuple_set_u64(t
, 3, sym
->end
);
639 tuple_set_s32(t
, 4, sym
->binding
);
640 tuple_set_string(t
, 5, sym
->name
);
642 call_object(tables
->symbol_handler
, t
, "symbol_table");
649 static int python_export_branch_type(struct db_export
*dbe
, u32 branch_type
,
652 struct tables
*tables
= container_of(dbe
, struct tables
, dbe
);
657 tuple_set_s32(t
, 0, branch_type
);
658 tuple_set_string(t
, 1, name
);
660 call_object(tables
->branch_type_handler
, t
, "branch_type_table");
667 static int python_export_sample(struct db_export
*dbe
,
668 struct export_sample
*es
)
670 struct tables
*tables
= container_of(dbe
, struct tables
, dbe
);
675 tuple_set_u64(t
, 0, es
->db_id
);
676 tuple_set_u64(t
, 1, es
->evsel
->db_id
);
677 tuple_set_u64(t
, 2, es
->al
->machine
->db_id
);
678 tuple_set_u64(t
, 3, es
->thread
->db_id
);
679 tuple_set_u64(t
, 4, es
->comm_db_id
);
680 tuple_set_u64(t
, 5, es
->dso_db_id
);
681 tuple_set_u64(t
, 6, es
->sym_db_id
);
682 tuple_set_u64(t
, 7, es
->offset
);
683 tuple_set_u64(t
, 8, es
->sample
->ip
);
684 tuple_set_u64(t
, 9, es
->sample
->time
);
685 tuple_set_s32(t
, 10, es
->sample
->cpu
);
686 tuple_set_u64(t
, 11, es
->addr_dso_db_id
);
687 tuple_set_u64(t
, 12, es
->addr_sym_db_id
);
688 tuple_set_u64(t
, 13, es
->addr_offset
);
689 tuple_set_u64(t
, 14, es
->sample
->addr
);
690 tuple_set_u64(t
, 15, es
->sample
->period
);
691 tuple_set_u64(t
, 16, es
->sample
->weight
);
692 tuple_set_u64(t
, 17, es
->sample
->transaction
);
693 tuple_set_u64(t
, 18, es
->sample
->data_src
);
694 tuple_set_s32(t
, 19, es
->sample
->flags
& PERF_BRANCH_MASK
);
695 tuple_set_s32(t
, 20, !!(es
->sample
->flags
& PERF_IP_FLAG_IN_TX
));
697 call_object(tables
->sample_handler
, t
, "sample_table");
704 static int python_export_call_path(struct db_export
*dbe
, struct call_path
*cp
)
706 struct tables
*tables
= container_of(dbe
, struct tables
, dbe
);
708 u64 parent_db_id
, sym_db_id
;
710 parent_db_id
= cp
->parent
? cp
->parent
->db_id
: 0;
711 sym_db_id
= cp
->sym
? *(u64
*)symbol__priv(cp
->sym
) : 0;
715 tuple_set_u64(t
, 0, cp
->db_id
);
716 tuple_set_u64(t
, 1, parent_db_id
);
717 tuple_set_u64(t
, 2, sym_db_id
);
718 tuple_set_u64(t
, 3, cp
->ip
);
720 call_object(tables
->call_path_handler
, t
, "call_path_table");
727 static int python_export_call_return(struct db_export
*dbe
,
728 struct call_return
*cr
)
730 struct tables
*tables
= container_of(dbe
, struct tables
, dbe
);
731 u64 comm_db_id
= cr
->comm
? cr
->comm
->db_id
: 0;
736 tuple_set_u64(t
, 0, cr
->db_id
);
737 tuple_set_u64(t
, 1, cr
->thread
->db_id
);
738 tuple_set_u64(t
, 2, comm_db_id
);
739 tuple_set_u64(t
, 3, cr
->cp
->db_id
);
740 tuple_set_u64(t
, 4, cr
->call_time
);
741 tuple_set_u64(t
, 5, cr
->return_time
);
742 tuple_set_u64(t
, 6, cr
->branch_count
);
743 tuple_set_u64(t
, 7, cr
->call_ref
);
744 tuple_set_u64(t
, 8, cr
->return_ref
);
745 tuple_set_u64(t
, 9, cr
->cp
->parent
->db_id
);
746 tuple_set_s32(t
, 10, cr
->flags
);
748 call_object(tables
->call_return_handler
, t
, "call_return_table");
755 static int python_process_call_return(struct call_return
*cr
, void *data
)
757 struct db_export
*dbe
= data
;
759 return db_export__call_return(dbe
, cr
);
762 static void python_process_general_event(struct perf_sample
*sample
,
763 struct perf_evsel
*evsel
,
764 struct thread
*thread
,
765 struct addr_location
*al
)
767 PyObject
*handler
, *t
, *dict
, *callchain
, *dict_sample
;
768 static char handler_name
[64];
772 * Use the MAX_FIELDS to make the function expandable, though
773 * currently there is only one item for the tuple.
775 t
= PyTuple_New(MAX_FIELDS
);
777 Py_FatalError("couldn't create Python tuple");
781 Py_FatalError("couldn't create Python dictionary");
783 dict_sample
= PyDict_New();
785 Py_FatalError("couldn't create Python dictionary");
787 snprintf(handler_name
, sizeof(handler_name
), "%s", "process_event");
789 handler
= get_handler(handler_name
);
793 pydict_set_item_string_decref(dict
, "ev_name", PyString_FromString(perf_evsel__name(evsel
)));
794 pydict_set_item_string_decref(dict
, "attr", PyString_FromStringAndSize(
795 (const char *)&evsel
->attr
, sizeof(evsel
->attr
)));
797 pydict_set_item_string_decref(dict_sample
, "pid",
798 PyInt_FromLong(sample
->pid
));
799 pydict_set_item_string_decref(dict_sample
, "tid",
800 PyInt_FromLong(sample
->tid
));
801 pydict_set_item_string_decref(dict_sample
, "cpu",
802 PyInt_FromLong(sample
->cpu
));
803 pydict_set_item_string_decref(dict_sample
, "ip",
804 PyLong_FromUnsignedLongLong(sample
->ip
));
805 pydict_set_item_string_decref(dict_sample
, "time",
806 PyLong_FromUnsignedLongLong(sample
->time
));
807 pydict_set_item_string_decref(dict_sample
, "period",
808 PyLong_FromUnsignedLongLong(sample
->period
));
809 pydict_set_item_string_decref(dict
, "sample", dict_sample
);
811 pydict_set_item_string_decref(dict
, "raw_buf", PyString_FromStringAndSize(
812 (const char *)sample
->raw_data
, sample
->raw_size
));
813 pydict_set_item_string_decref(dict
, "comm",
814 PyString_FromString(thread__comm_str(thread
)));
816 pydict_set_item_string_decref(dict
, "dso",
817 PyString_FromString(al
->map
->dso
->name
));
820 pydict_set_item_string_decref(dict
, "symbol",
821 PyString_FromString(al
->sym
->name
));
825 callchain
= python_process_callchain(sample
, evsel
, al
);
826 pydict_set_item_string_decref(dict
, "callchain", callchain
);
828 PyTuple_SetItem(t
, n
++, dict
);
829 if (_PyTuple_Resize(&t
, n
) == -1)
830 Py_FatalError("error resizing Python tuple");
832 call_object(handler
, t
, handler_name
);
838 static void python_process_event(union perf_event
*event
,
839 struct perf_sample
*sample
,
840 struct perf_evsel
*evsel
,
841 struct thread
*thread
,
842 struct addr_location
*al
)
844 struct tables
*tables
= &tables_global
;
846 switch (evsel
->attr
.type
) {
847 case PERF_TYPE_TRACEPOINT
:
848 python_process_tracepoint(sample
, evsel
, thread
, al
);
850 /* Reserve for future process_hw/sw/raw APIs */
852 if (tables
->db_export_mode
)
853 db_export__sample(&tables
->dbe
, event
, sample
, evsel
,
856 python_process_general_event(sample
, evsel
, thread
, al
);
860 static int run_start_sub(void)
862 main_module
= PyImport_AddModule("__main__");
863 if (main_module
== NULL
)
865 Py_INCREF(main_module
);
867 main_dict
= PyModule_GetDict(main_module
);
868 if (main_dict
== NULL
)
870 Py_INCREF(main_dict
);
872 try_call_object("trace_begin", NULL
);
877 Py_XDECREF(main_dict
);
878 Py_XDECREF(main_module
);
882 #define SET_TABLE_HANDLER_(name, handler_name, table_name) do { \
883 tables->handler_name = get_handler(#table_name); \
884 if (tables->handler_name) \
885 tables->dbe.export_ ## name = python_export_ ## name; \
888 #define SET_TABLE_HANDLER(name) \
889 SET_TABLE_HANDLER_(name, name ## _handler, name ## _table)
891 static void set_table_handlers(struct tables
*tables
)
893 const char *perf_db_export_mode
= "perf_db_export_mode";
894 const char *perf_db_export_calls
= "perf_db_export_calls";
895 PyObject
*db_export_mode
, *db_export_calls
;
896 bool export_calls
= false;
899 memset(tables
, 0, sizeof(struct tables
));
900 if (db_export__init(&tables
->dbe
))
901 Py_FatalError("failed to initialize export");
903 db_export_mode
= PyDict_GetItemString(main_dict
, perf_db_export_mode
);
907 ret
= PyObject_IsTrue(db_export_mode
);
909 handler_call_die(perf_db_export_mode
);
913 tables
->dbe
.crp
= NULL
;
914 db_export_calls
= PyDict_GetItemString(main_dict
, perf_db_export_calls
);
915 if (db_export_calls
) {
916 ret
= PyObject_IsTrue(db_export_calls
);
918 handler_call_die(perf_db_export_calls
);
919 export_calls
= !!ret
;
924 call_return_processor__new(python_process_call_return
,
926 if (!tables
->dbe
.crp
)
927 Py_FatalError("failed to create calls processor");
930 tables
->db_export_mode
= true;
932 * Reserve per symbol space for symbol->db_id via symbol__priv()
934 symbol_conf
.priv_size
= sizeof(u64
);
936 SET_TABLE_HANDLER(evsel
);
937 SET_TABLE_HANDLER(machine
);
938 SET_TABLE_HANDLER(thread
);
939 SET_TABLE_HANDLER(comm
);
940 SET_TABLE_HANDLER(comm_thread
);
941 SET_TABLE_HANDLER(dso
);
942 SET_TABLE_HANDLER(symbol
);
943 SET_TABLE_HANDLER(branch_type
);
944 SET_TABLE_HANDLER(sample
);
945 SET_TABLE_HANDLER(call_path
);
946 SET_TABLE_HANDLER(call_return
);
952 static int python_start_script(const char *script
, int argc
, const char **argv
)
954 struct tables
*tables
= &tables_global
;
955 const char **command_line
;
960 command_line
= malloc((argc
+ 1) * sizeof(const char *));
961 command_line
[0] = script
;
962 for (i
= 1; i
< argc
+ 1; i
++)
963 command_line
[i
] = argv
[i
- 1];
967 initperf_trace_context();
969 PySys_SetArgv(argc
+ 1, (char **)command_line
);
971 fp
= fopen(script
, "r");
973 sprintf(buf
, "Can't open python script \"%s\"", script
);
979 err
= PyRun_SimpleFile(fp
, script
);
981 fprintf(stderr
, "Error running python script %s\n", script
);
985 err
= run_start_sub();
987 fprintf(stderr
, "Error starting python script %s\n", script
);
993 set_table_handlers(tables
);
995 if (tables
->db_export_mode
) {
996 err
= db_export__branch_types(&tables
->dbe
);
1009 static int python_flush_script(void)
1011 struct tables
*tables
= &tables_global
;
1013 return db_export__flush(&tables
->dbe
);
1019 static int python_stop_script(void)
1021 struct tables
*tables
= &tables_global
;
1023 try_call_object("trace_end", NULL
);
1025 db_export__exit(&tables
->dbe
);
1027 Py_XDECREF(main_dict
);
1028 Py_XDECREF(main_module
);
1034 static int python_generate_script(struct pevent
*pevent
, const char *outfile
)
1036 struct event_format
*event
= NULL
;
1037 struct format_field
*f
;
1038 char fname
[PATH_MAX
];
1039 int not_first
, count
;
1042 sprintf(fname
, "%s.py", outfile
);
1043 ofp
= fopen(fname
, "w");
1045 fprintf(stderr
, "couldn't open %s\n", fname
);
1048 fprintf(ofp
, "# perf script event handlers, "
1049 "generated by perf script -g python\n");
1051 fprintf(ofp
, "# Licensed under the terms of the GNU GPL"
1052 " License version 2\n\n");
1054 fprintf(ofp
, "# The common_* event handler fields are the most useful "
1055 "fields common to\n");
1057 fprintf(ofp
, "# all events. They don't necessarily correspond to "
1058 "the 'common_*' fields\n");
1060 fprintf(ofp
, "# in the format files. Those fields not available as "
1061 "handler params can\n");
1063 fprintf(ofp
, "# be retrieved using Python functions of the form "
1064 "common_*(context).\n");
1066 fprintf(ofp
, "# See the perf-trace-python Documentation for the list "
1067 "of available functions.\n\n");
1069 fprintf(ofp
, "import os\n");
1070 fprintf(ofp
, "import sys\n\n");
1072 fprintf(ofp
, "sys.path.append(os.environ['PERF_EXEC_PATH'] + \\\n");
1073 fprintf(ofp
, "\t'/scripts/python/Perf-Trace-Util/lib/Perf/Trace')\n");
1074 fprintf(ofp
, "\nfrom perf_trace_context import *\n");
1075 fprintf(ofp
, "from Core import *\n\n\n");
1077 fprintf(ofp
, "def trace_begin():\n");
1078 fprintf(ofp
, "\tprint \"in trace_begin\"\n\n");
1080 fprintf(ofp
, "def trace_end():\n");
1081 fprintf(ofp
, "\tprint \"in trace_end\"\n\n");
1083 while ((event
= trace_find_next_event(pevent
, event
))) {
1084 fprintf(ofp
, "def %s__%s(", event
->system
, event
->name
);
1085 fprintf(ofp
, "event_name, ");
1086 fprintf(ofp
, "context, ");
1087 fprintf(ofp
, "common_cpu,\n");
1088 fprintf(ofp
, "\tcommon_secs, ");
1089 fprintf(ofp
, "common_nsecs, ");
1090 fprintf(ofp
, "common_pid, ");
1091 fprintf(ofp
, "common_comm,\n\t");
1092 fprintf(ofp
, "common_callchain, ");
1097 for (f
= event
->format
.fields
; f
; f
= f
->next
) {
1100 if (++count
% 5 == 0)
1101 fprintf(ofp
, "\n\t");
1103 fprintf(ofp
, "%s", f
->name
);
1105 fprintf(ofp
, "):\n");
1107 fprintf(ofp
, "\t\tprint_header(event_name, common_cpu, "
1108 "common_secs, common_nsecs,\n\t\t\t"
1109 "common_pid, common_comm)\n\n");
1111 fprintf(ofp
, "\t\tprint \"");
1116 for (f
= event
->format
.fields
; f
; f
= f
->next
) {
1119 if (count
&& count
% 3 == 0) {
1120 fprintf(ofp
, "\" \\\n\t\t\"");
1124 fprintf(ofp
, "%s=", f
->name
);
1125 if (f
->flags
& FIELD_IS_STRING
||
1126 f
->flags
& FIELD_IS_FLAG
||
1127 f
->flags
& FIELD_IS_ARRAY
||
1128 f
->flags
& FIELD_IS_SYMBOLIC
)
1129 fprintf(ofp
, "%%s");
1130 else if (f
->flags
& FIELD_IS_SIGNED
)
1131 fprintf(ofp
, "%%d");
1133 fprintf(ofp
, "%%u");
1136 fprintf(ofp
, "\" %% \\\n\t\t(");
1141 for (f
= event
->format
.fields
; f
; f
= f
->next
) {
1145 if (++count
% 5 == 0)
1146 fprintf(ofp
, "\n\t\t");
1148 if (f
->flags
& FIELD_IS_FLAG
) {
1149 if ((count
- 1) % 5 != 0) {
1150 fprintf(ofp
, "\n\t\t");
1153 fprintf(ofp
, "flag_str(\"");
1154 fprintf(ofp
, "%s__%s\", ", event
->system
,
1156 fprintf(ofp
, "\"%s\", %s)", f
->name
,
1158 } else if (f
->flags
& FIELD_IS_SYMBOLIC
) {
1159 if ((count
- 1) % 5 != 0) {
1160 fprintf(ofp
, "\n\t\t");
1163 fprintf(ofp
, "symbol_str(\"");
1164 fprintf(ofp
, "%s__%s\", ", event
->system
,
1166 fprintf(ofp
, "\"%s\", %s)", f
->name
,
1169 fprintf(ofp
, "%s", f
->name
);
1172 fprintf(ofp
, ")\n\n");
1174 fprintf(ofp
, "\t\tfor node in common_callchain:");
1175 fprintf(ofp
, "\n\t\t\tif 'sym' in node:");
1176 fprintf(ofp
, "\n\t\t\t\tprint \"\\t[%%x] %%s\" %% (node['ip'], node['sym']['name'])");
1177 fprintf(ofp
, "\n\t\t\telse:");
1178 fprintf(ofp
, "\n\t\t\t\tprint \"\t[%%x]\" %% (node['ip'])\n\n");
1179 fprintf(ofp
, "\t\tprint \"\\n\"\n\n");
1183 fprintf(ofp
, "def trace_unhandled(event_name, context, "
1184 "event_fields_dict):\n");
1186 fprintf(ofp
, "\t\tprint ' '.join(['%%s=%%s'%%(k,str(v))"
1187 "for k,v in sorted(event_fields_dict.items())])\n\n");
1189 fprintf(ofp
, "def print_header("
1190 "event_name, cpu, secs, nsecs, pid, comm):\n"
1191 "\tprint \"%%-20s %%5u %%05u.%%09u %%8u %%-20s \" %% \\\n\t"
1192 "(event_name, cpu, secs, nsecs, pid, comm),\n");
1196 fprintf(stderr
, "generated Python script: %s\n", fname
);
1201 struct scripting_ops python_scripting_ops
= {
1203 .start_script
= python_start_script
,
1204 .flush_script
= python_flush_script
,
1205 .stop_script
= python_stop_script
,
1206 .process_event
= python_process_event
,
1207 .generate_script
= python_generate_script
,