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
30 #include "../../perf.h"
33 #include "../thread.h"
34 #include "../trace-event.h"
36 PyMODINIT_FUNC
initperf_trace_context(void);
38 #define FTRACE_MAX_EVENT \
39 ((1 << (sizeof(unsigned short) * 8)) - 1)
41 struct event
*events
[FTRACE_MAX_EVENT
];
44 #define N_COMMON_FIELDS 7
46 extern struct scripting_context
*scripting_context
;
48 static char *cur_field_name
;
49 static int zero_flag_atom
;
51 static PyObject
*main_module
, *main_dict
;
53 static void handler_call_die(const char *handler_name
)
56 Py_FatalError("problem in Python trace event handler");
59 static void define_value(enum print_arg_type field_type
,
61 const char *field_name
,
62 const char *field_value
,
63 const char *field_str
)
65 const char *handler_name
= "define_flag_value";
66 PyObject
*handler
, *t
, *retval
;
67 unsigned long long value
;
70 if (field_type
== PRINT_SYMBOL
)
71 handler_name
= "define_symbolic_value";
75 Py_FatalError("couldn't create Python tuple");
77 value
= eval_flag(field_value
);
79 PyTuple_SetItem(t
, n
++, PyString_FromString(ev_name
));
80 PyTuple_SetItem(t
, n
++, PyString_FromString(field_name
));
81 PyTuple_SetItem(t
, n
++, PyInt_FromLong(value
));
82 PyTuple_SetItem(t
, n
++, PyString_FromString(field_str
));
84 handler
= PyDict_GetItemString(main_dict
, handler_name
);
85 if (handler
&& PyCallable_Check(handler
)) {
86 retval
= PyObject_CallObject(handler
, t
);
88 handler_call_die(handler_name
);
94 static void define_values(enum print_arg_type field_type
,
95 struct print_flag_sym
*field
,
97 const char *field_name
)
99 define_value(field_type
, ev_name
, field_name
, field
->value
,
103 define_values(field_type
, field
->next
, ev_name
, field_name
);
106 static void define_field(enum print_arg_type field_type
,
108 const char *field_name
,
111 const char *handler_name
= "define_flag_field";
112 PyObject
*handler
, *t
, *retval
;
115 if (field_type
== PRINT_SYMBOL
)
116 handler_name
= "define_symbolic_field";
118 if (field_type
== PRINT_FLAGS
)
123 Py_FatalError("couldn't create Python tuple");
125 PyTuple_SetItem(t
, n
++, PyString_FromString(ev_name
));
126 PyTuple_SetItem(t
, n
++, PyString_FromString(field_name
));
127 if (field_type
== PRINT_FLAGS
)
128 PyTuple_SetItem(t
, n
++, PyString_FromString(delim
));
130 handler
= PyDict_GetItemString(main_dict
, handler_name
);
131 if (handler
&& PyCallable_Check(handler
)) {
132 retval
= PyObject_CallObject(handler
, t
);
134 handler_call_die(handler_name
);
140 static void define_event_symbols(struct event
*event
,
142 struct print_arg
*args
)
144 switch (args
->type
) {
148 define_value(PRINT_FLAGS
, ev_name
, cur_field_name
, "0",
154 free(cur_field_name
);
155 cur_field_name
= strdup(args
->field
.name
);
158 define_event_symbols(event
, ev_name
, args
->flags
.field
);
159 define_field(PRINT_FLAGS
, ev_name
, cur_field_name
,
161 define_values(PRINT_FLAGS
, args
->flags
.flags
, ev_name
,
165 define_event_symbols(event
, ev_name
, args
->symbol
.field
);
166 define_field(PRINT_SYMBOL
, ev_name
, cur_field_name
, NULL
);
167 define_values(PRINT_SYMBOL
, args
->symbol
.symbols
, ev_name
,
173 define_event_symbols(event
, ev_name
, args
->typecast
.item
);
176 if (strcmp(args
->op
.op
, ":") == 0)
178 define_event_symbols(event
, ev_name
, args
->op
.left
);
179 define_event_symbols(event
, ev_name
, args
->op
.right
);
182 /* we should warn... */
187 define_event_symbols(event
, ev_name
, args
->next
);
190 static inline struct event
*find_cache_event(int type
)
192 static char ev_name
[256];
198 events
[type
] = event
= trace_find_event(type
);
202 sprintf(ev_name
, "%s__%s", event
->system
, event
->name
);
204 define_event_symbols(event
, ev_name
, event
->print_fmt
.args
);
209 static void python_process_event(union perf_event
*pevent __unused
,
210 struct perf_sample
*sample
,
211 struct perf_evsel
*evsel __unused
,
212 struct machine
*machine __unused
,
213 struct thread
*thread
)
215 PyObject
*handler
, *retval
, *context
, *t
, *obj
, *dict
= NULL
;
216 static char handler_name
[256];
217 struct format_field
*field
;
218 unsigned long long val
;
224 int cpu
= sample
->cpu
;
225 void *data
= sample
->raw_data
;
226 unsigned long long nsecs
= sample
->time
;
227 char *comm
= thread
->comm
;
229 t
= PyTuple_New(MAX_FIELDS
);
231 Py_FatalError("couldn't create Python tuple");
233 type
= trace_parse_common_type(data
);
235 event
= find_cache_event(type
);
237 die("ug! no event found for type %d", type
);
239 pid
= trace_parse_common_pid(data
);
241 sprintf(handler_name
, "%s__%s", event
->system
, event
->name
);
243 handler
= PyDict_GetItemString(main_dict
, handler_name
);
244 if (handler
&& !PyCallable_Check(handler
))
249 Py_FatalError("couldn't create Python dict");
251 s
= nsecs
/ NSECS_PER_SEC
;
252 ns
= nsecs
- s
* NSECS_PER_SEC
;
254 scripting_context
->event_data
= data
;
256 context
= PyCObject_FromVoidPtr(scripting_context
, NULL
);
258 PyTuple_SetItem(t
, n
++, PyString_FromString(handler_name
));
259 PyTuple_SetItem(t
, n
++, context
);
262 PyTuple_SetItem(t
, n
++, PyInt_FromLong(cpu
));
263 PyTuple_SetItem(t
, n
++, PyInt_FromLong(s
));
264 PyTuple_SetItem(t
, n
++, PyInt_FromLong(ns
));
265 PyTuple_SetItem(t
, n
++, PyInt_FromLong(pid
));
266 PyTuple_SetItem(t
, n
++, PyString_FromString(comm
));
268 PyDict_SetItemString(dict
, "common_cpu", PyInt_FromLong(cpu
));
269 PyDict_SetItemString(dict
, "common_s", PyInt_FromLong(s
));
270 PyDict_SetItemString(dict
, "common_ns", PyInt_FromLong(ns
));
271 PyDict_SetItemString(dict
, "common_pid", PyInt_FromLong(pid
));
272 PyDict_SetItemString(dict
, "common_comm", PyString_FromString(comm
));
274 for (field
= event
->format
.fields
; field
; field
= field
->next
) {
275 if (field
->flags
& FIELD_IS_STRING
) {
277 if (field
->flags
& FIELD_IS_DYNAMIC
) {
278 offset
= *(int *)(data
+ field
->offset
);
281 offset
= field
->offset
;
282 obj
= PyString_FromString((char *)data
+ offset
);
283 } else { /* FIELD_IS_NUMERIC */
284 val
= read_size(data
+ field
->offset
, field
->size
);
285 if (field
->flags
& FIELD_IS_SIGNED
) {
286 if ((long long)val
>= LONG_MIN
&&
287 (long long)val
<= LONG_MAX
)
288 obj
= PyInt_FromLong(val
);
290 obj
= PyLong_FromLongLong(val
);
293 obj
= PyInt_FromLong(val
);
295 obj
= PyLong_FromUnsignedLongLong(val
);
299 PyTuple_SetItem(t
, n
++, obj
);
301 PyDict_SetItemString(dict
, field
->name
, obj
);
305 PyTuple_SetItem(t
, n
++, dict
);
307 if (_PyTuple_Resize(&t
, n
) == -1)
308 Py_FatalError("error resizing Python tuple");
311 retval
= PyObject_CallObject(handler
, t
);
313 handler_call_die(handler_name
);
315 handler
= PyDict_GetItemString(main_dict
, "trace_unhandled");
316 if (handler
&& PyCallable_Check(handler
)) {
318 retval
= PyObject_CallObject(handler
, t
);
320 handler_call_die("trace_unhandled");
328 static int run_start_sub(void)
330 PyObject
*handler
, *retval
;
333 main_module
= PyImport_AddModule("__main__");
334 if (main_module
== NULL
)
336 Py_INCREF(main_module
);
338 main_dict
= PyModule_GetDict(main_module
);
339 if (main_dict
== NULL
) {
343 Py_INCREF(main_dict
);
345 handler
= PyDict_GetItemString(main_dict
, "trace_begin");
346 if (handler
== NULL
|| !PyCallable_Check(handler
))
349 retval
= PyObject_CallObject(handler
, NULL
);
351 handler_call_die("trace_begin");
356 Py_XDECREF(main_dict
);
357 Py_XDECREF(main_module
);
365 static int python_start_script(const char *script
, int argc
, const char **argv
)
367 const char **command_line
;
372 command_line
= malloc((argc
+ 1) * sizeof(const char *));
373 command_line
[0] = script
;
374 for (i
= 1; i
< argc
+ 1; i
++)
375 command_line
[i
] = argv
[i
- 1];
379 initperf_trace_context();
381 PySys_SetArgv(argc
+ 1, (char **)command_line
);
383 fp
= fopen(script
, "r");
385 sprintf(buf
, "Can't open python script \"%s\"", script
);
391 err
= PyRun_SimpleFile(fp
, script
);
393 fprintf(stderr
, "Error running python script %s\n", script
);
397 err
= run_start_sub();
399 fprintf(stderr
, "Error starting python script %s\n", script
);
416 static int python_stop_script(void)
418 PyObject
*handler
, *retval
;
421 handler
= PyDict_GetItemString(main_dict
, "trace_end");
422 if (handler
== NULL
|| !PyCallable_Check(handler
))
425 retval
= PyObject_CallObject(handler
, NULL
);
427 handler_call_die("trace_end");
431 Py_XDECREF(main_dict
);
432 Py_XDECREF(main_module
);
438 static int python_generate_script(const char *outfile
)
440 struct event
*event
= NULL
;
441 struct format_field
*f
;
442 char fname
[PATH_MAX
];
443 int not_first
, count
;
446 sprintf(fname
, "%s.py", outfile
);
447 ofp
= fopen(fname
, "w");
449 fprintf(stderr
, "couldn't open %s\n", fname
);
452 fprintf(ofp
, "# perf script event handlers, "
453 "generated by perf script -g python\n");
455 fprintf(ofp
, "# Licensed under the terms of the GNU GPL"
456 " License version 2\n\n");
458 fprintf(ofp
, "# The common_* event handler fields are the most useful "
459 "fields common to\n");
461 fprintf(ofp
, "# all events. They don't necessarily correspond to "
462 "the 'common_*' fields\n");
464 fprintf(ofp
, "# in the format files. Those fields not available as "
465 "handler params can\n");
467 fprintf(ofp
, "# be retrieved using Python functions of the form "
468 "common_*(context).\n");
470 fprintf(ofp
, "# See the perf-trace-python Documentation for the list "
471 "of available functions.\n\n");
473 fprintf(ofp
, "import os\n");
474 fprintf(ofp
, "import sys\n\n");
476 fprintf(ofp
, "sys.path.append(os.environ['PERF_EXEC_PATH'] + \\\n");
477 fprintf(ofp
, "\t'/scripts/python/Perf-Trace-Util/lib/Perf/Trace')\n");
478 fprintf(ofp
, "\nfrom perf_trace_context import *\n");
479 fprintf(ofp
, "from Core import *\n\n\n");
481 fprintf(ofp
, "def trace_begin():\n");
482 fprintf(ofp
, "\tprint \"in trace_begin\"\n\n");
484 fprintf(ofp
, "def trace_end():\n");
485 fprintf(ofp
, "\tprint \"in trace_end\"\n\n");
487 while ((event
= trace_find_next_event(event
))) {
488 fprintf(ofp
, "def %s__%s(", event
->system
, event
->name
);
489 fprintf(ofp
, "event_name, ");
490 fprintf(ofp
, "context, ");
491 fprintf(ofp
, "common_cpu,\n");
492 fprintf(ofp
, "\tcommon_secs, ");
493 fprintf(ofp
, "common_nsecs, ");
494 fprintf(ofp
, "common_pid, ");
495 fprintf(ofp
, "common_comm,\n\t");
500 for (f
= event
->format
.fields
; f
; f
= f
->next
) {
503 if (++count
% 5 == 0)
504 fprintf(ofp
, "\n\t");
506 fprintf(ofp
, "%s", f
->name
);
508 fprintf(ofp
, "):\n");
510 fprintf(ofp
, "\t\tprint_header(event_name, common_cpu, "
511 "common_secs, common_nsecs,\n\t\t\t"
512 "common_pid, common_comm)\n\n");
514 fprintf(ofp
, "\t\tprint \"");
519 for (f
= event
->format
.fields
; f
; f
= f
->next
) {
522 if (count
&& count
% 3 == 0) {
523 fprintf(ofp
, "\" \\\n\t\t\"");
527 fprintf(ofp
, "%s=", f
->name
);
528 if (f
->flags
& FIELD_IS_STRING
||
529 f
->flags
& FIELD_IS_FLAG
||
530 f
->flags
& FIELD_IS_SYMBOLIC
)
532 else if (f
->flags
& FIELD_IS_SIGNED
)
538 fprintf(ofp
, "\\n\" %% \\\n\t\t(");
543 for (f
= event
->format
.fields
; f
; f
= f
->next
) {
547 if (++count
% 5 == 0)
548 fprintf(ofp
, "\n\t\t");
550 if (f
->flags
& FIELD_IS_FLAG
) {
551 if ((count
- 1) % 5 != 0) {
552 fprintf(ofp
, "\n\t\t");
555 fprintf(ofp
, "flag_str(\"");
556 fprintf(ofp
, "%s__%s\", ", event
->system
,
558 fprintf(ofp
, "\"%s\", %s)", f
->name
,
560 } else if (f
->flags
& FIELD_IS_SYMBOLIC
) {
561 if ((count
- 1) % 5 != 0) {
562 fprintf(ofp
, "\n\t\t");
565 fprintf(ofp
, "symbol_str(\"");
566 fprintf(ofp
, "%s__%s\", ", event
->system
,
568 fprintf(ofp
, "\"%s\", %s)", f
->name
,
571 fprintf(ofp
, "%s", f
->name
);
574 fprintf(ofp
, "),\n\n");
577 fprintf(ofp
, "def trace_unhandled(event_name, context, "
578 "event_fields_dict):\n");
580 fprintf(ofp
, "\t\tprint ' '.join(['%%s=%%s'%%(k,str(v))"
581 "for k,v in sorted(event_fields_dict.items())])\n\n");
583 fprintf(ofp
, "def print_header("
584 "event_name, cpu, secs, nsecs, pid, comm):\n"
585 "\tprint \"%%-20s %%5u %%05u.%%09u %%8u %%-20s \" %% \\\n\t"
586 "(event_name, cpu, secs, nsecs, pid, comm),\n");
590 fprintf(stderr
, "generated Python script: %s\n", fname
);
595 struct scripting_ops python_scripting_ops
= {
597 .start_script
= python_start_script
,
598 .stop_script
= python_stop_script
,
599 .process_event
= python_process_event
,
600 .generate_script
= python_generate_script
,