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"
32 #include "../trace-event.h"
34 PyMODINIT_FUNC
initperf_trace_context(void);
36 #define FTRACE_MAX_EVENT \
37 ((1 << (sizeof(unsigned short) * 8)) - 1)
39 struct event
*events
[FTRACE_MAX_EVENT
];
42 #define N_COMMON_FIELDS 7
44 extern struct scripting_context
*scripting_context
;
46 static char *cur_field_name
;
47 static int zero_flag_atom
;
49 static PyObject
*main_module
, *main_dict
;
51 static void handler_call_die(const char *handler_name
)
54 Py_FatalError("problem in Python trace event handler");
57 static void define_value(enum print_arg_type field_type
,
59 const char *field_name
,
60 const char *field_value
,
61 const char *field_str
)
63 const char *handler_name
= "define_flag_value";
64 PyObject
*handler
, *t
, *retval
;
65 unsigned long long value
;
68 if (field_type
== PRINT_SYMBOL
)
69 handler_name
= "define_symbolic_value";
73 Py_FatalError("couldn't create Python tuple");
75 value
= eval_flag(field_value
);
77 PyTuple_SetItem(t
, n
++, PyString_FromString(ev_name
));
78 PyTuple_SetItem(t
, n
++, PyString_FromString(field_name
));
79 PyTuple_SetItem(t
, n
++, PyInt_FromLong(value
));
80 PyTuple_SetItem(t
, n
++, PyString_FromString(field_str
));
82 handler
= PyDict_GetItemString(main_dict
, handler_name
);
83 if (handler
&& PyCallable_Check(handler
)) {
84 retval
= PyObject_CallObject(handler
, t
);
86 handler_call_die(handler_name
);
92 static void define_values(enum print_arg_type field_type
,
93 struct print_flag_sym
*field
,
95 const char *field_name
)
97 define_value(field_type
, ev_name
, field_name
, field
->value
,
101 define_values(field_type
, field
->next
, ev_name
, field_name
);
104 static void define_field(enum print_arg_type field_type
,
106 const char *field_name
,
109 const char *handler_name
= "define_flag_field";
110 PyObject
*handler
, *t
, *retval
;
113 if (field_type
== PRINT_SYMBOL
)
114 handler_name
= "define_symbolic_field";
116 if (field_type
== PRINT_FLAGS
)
121 Py_FatalError("couldn't create Python tuple");
123 PyTuple_SetItem(t
, n
++, PyString_FromString(ev_name
));
124 PyTuple_SetItem(t
, n
++, PyString_FromString(field_name
));
125 if (field_type
== PRINT_FLAGS
)
126 PyTuple_SetItem(t
, n
++, PyString_FromString(delim
));
128 handler
= PyDict_GetItemString(main_dict
, handler_name
);
129 if (handler
&& PyCallable_Check(handler
)) {
130 retval
= PyObject_CallObject(handler
, t
);
132 handler_call_die(handler_name
);
138 static void define_event_symbols(struct event
*event
,
140 struct print_arg
*args
)
142 switch (args
->type
) {
146 define_value(PRINT_FLAGS
, ev_name
, cur_field_name
, "0",
152 free(cur_field_name
);
153 cur_field_name
= strdup(args
->field
.name
);
156 define_event_symbols(event
, ev_name
, args
->flags
.field
);
157 define_field(PRINT_FLAGS
, ev_name
, cur_field_name
,
159 define_values(PRINT_FLAGS
, args
->flags
.flags
, ev_name
,
163 define_event_symbols(event
, ev_name
, args
->symbol
.field
);
164 define_field(PRINT_SYMBOL
, ev_name
, cur_field_name
, NULL
);
165 define_values(PRINT_SYMBOL
, args
->symbol
.symbols
, ev_name
,
171 define_event_symbols(event
, ev_name
, args
->typecast
.item
);
174 if (strcmp(args
->op
.op
, ":") == 0)
176 define_event_symbols(event
, ev_name
, args
->op
.left
);
177 define_event_symbols(event
, ev_name
, args
->op
.right
);
180 /* we should warn... */
185 define_event_symbols(event
, ev_name
, args
->next
);
188 static inline struct event
*find_cache_event(int type
)
190 static char ev_name
[256];
196 events
[type
] = event
= trace_find_event(type
);
200 sprintf(ev_name
, "%s__%s", event
->system
, event
->name
);
202 define_event_symbols(event
, ev_name
, event
->print_fmt
.args
);
207 static void python_process_event(union perf_event
*pevent __unused
,
208 struct perf_sample
*sample
,
209 struct perf_evsel
*evsel __unused
,
210 struct perf_session
*session __unused
,
211 struct thread
*thread
)
213 PyObject
*handler
, *retval
, *context
, *t
, *obj
, *dict
= NULL
;
214 static char handler_name
[256];
215 struct format_field
*field
;
216 unsigned long long val
;
222 int cpu
= sample
->cpu
;
223 void *data
= sample
->raw_data
;
224 unsigned long long nsecs
= sample
->time
;
225 char *comm
= thread
->comm
;
227 t
= PyTuple_New(MAX_FIELDS
);
229 Py_FatalError("couldn't create Python tuple");
231 type
= trace_parse_common_type(data
);
233 event
= find_cache_event(type
);
235 die("ug! no event found for type %d", type
);
237 pid
= trace_parse_common_pid(data
);
239 sprintf(handler_name
, "%s__%s", event
->system
, event
->name
);
241 handler
= PyDict_GetItemString(main_dict
, handler_name
);
242 if (handler
&& !PyCallable_Check(handler
))
247 Py_FatalError("couldn't create Python dict");
249 s
= nsecs
/ NSECS_PER_SEC
;
250 ns
= nsecs
- s
* NSECS_PER_SEC
;
252 scripting_context
->event_data
= data
;
254 context
= PyCObject_FromVoidPtr(scripting_context
, NULL
);
256 PyTuple_SetItem(t
, n
++, PyString_FromString(handler_name
));
257 PyTuple_SetItem(t
, n
++, context
);
260 PyTuple_SetItem(t
, n
++, PyInt_FromLong(cpu
));
261 PyTuple_SetItem(t
, n
++, PyInt_FromLong(s
));
262 PyTuple_SetItem(t
, n
++, PyInt_FromLong(ns
));
263 PyTuple_SetItem(t
, n
++, PyInt_FromLong(pid
));
264 PyTuple_SetItem(t
, n
++, PyString_FromString(comm
));
266 PyDict_SetItemString(dict
, "common_cpu", PyInt_FromLong(cpu
));
267 PyDict_SetItemString(dict
, "common_s", PyInt_FromLong(s
));
268 PyDict_SetItemString(dict
, "common_ns", PyInt_FromLong(ns
));
269 PyDict_SetItemString(dict
, "common_pid", PyInt_FromLong(pid
));
270 PyDict_SetItemString(dict
, "common_comm", PyString_FromString(comm
));
272 for (field
= event
->format
.fields
; field
; field
= field
->next
) {
273 if (field
->flags
& FIELD_IS_STRING
) {
275 if (field
->flags
& FIELD_IS_DYNAMIC
) {
276 offset
= *(int *)(data
+ field
->offset
);
279 offset
= field
->offset
;
280 obj
= PyString_FromString((char *)data
+ offset
);
281 } else { /* FIELD_IS_NUMERIC */
282 val
= read_size(data
+ field
->offset
, field
->size
);
283 if (field
->flags
& FIELD_IS_SIGNED
) {
284 if ((long long)val
>= LONG_MIN
&&
285 (long long)val
<= LONG_MAX
)
286 obj
= PyInt_FromLong(val
);
288 obj
= PyLong_FromLongLong(val
);
291 obj
= PyInt_FromLong(val
);
293 obj
= PyLong_FromUnsignedLongLong(val
);
297 PyTuple_SetItem(t
, n
++, obj
);
299 PyDict_SetItemString(dict
, field
->name
, obj
);
303 PyTuple_SetItem(t
, n
++, dict
);
305 if (_PyTuple_Resize(&t
, n
) == -1)
306 Py_FatalError("error resizing Python tuple");
309 retval
= PyObject_CallObject(handler
, t
);
311 handler_call_die(handler_name
);
313 handler
= PyDict_GetItemString(main_dict
, "trace_unhandled");
314 if (handler
&& PyCallable_Check(handler
)) {
316 retval
= PyObject_CallObject(handler
, t
);
318 handler_call_die("trace_unhandled");
326 static int run_start_sub(void)
328 PyObject
*handler
, *retval
;
331 main_module
= PyImport_AddModule("__main__");
332 if (main_module
== NULL
)
334 Py_INCREF(main_module
);
336 main_dict
= PyModule_GetDict(main_module
);
337 if (main_dict
== NULL
) {
341 Py_INCREF(main_dict
);
343 handler
= PyDict_GetItemString(main_dict
, "trace_begin");
344 if (handler
== NULL
|| !PyCallable_Check(handler
))
347 retval
= PyObject_CallObject(handler
, NULL
);
349 handler_call_die("trace_begin");
354 Py_XDECREF(main_dict
);
355 Py_XDECREF(main_module
);
363 static int python_start_script(const char *script
, int argc
, const char **argv
)
365 const char **command_line
;
370 command_line
= malloc((argc
+ 1) * sizeof(const char *));
371 command_line
[0] = script
;
372 for (i
= 1; i
< argc
+ 1; i
++)
373 command_line
[i
] = argv
[i
- 1];
377 initperf_trace_context();
379 PySys_SetArgv(argc
+ 1, (char **)command_line
);
381 fp
= fopen(script
, "r");
383 sprintf(buf
, "Can't open python script \"%s\"", script
);
389 err
= PyRun_SimpleFile(fp
, script
);
391 fprintf(stderr
, "Error running python script %s\n", script
);
395 err
= run_start_sub();
397 fprintf(stderr
, "Error starting python script %s\n", script
);
414 static int python_stop_script(void)
416 PyObject
*handler
, *retval
;
419 handler
= PyDict_GetItemString(main_dict
, "trace_end");
420 if (handler
== NULL
|| !PyCallable_Check(handler
))
423 retval
= PyObject_CallObject(handler
, NULL
);
425 handler_call_die("trace_end");
429 Py_XDECREF(main_dict
);
430 Py_XDECREF(main_module
);
436 static int python_generate_script(const char *outfile
)
438 struct event
*event
= NULL
;
439 struct format_field
*f
;
440 char fname
[PATH_MAX
];
441 int not_first
, count
;
444 sprintf(fname
, "%s.py", outfile
);
445 ofp
= fopen(fname
, "w");
447 fprintf(stderr
, "couldn't open %s\n", fname
);
450 fprintf(ofp
, "# perf script event handlers, "
451 "generated by perf script -g python\n");
453 fprintf(ofp
, "# Licensed under the terms of the GNU GPL"
454 " License version 2\n\n");
456 fprintf(ofp
, "# The common_* event handler fields are the most useful "
457 "fields common to\n");
459 fprintf(ofp
, "# all events. They don't necessarily correspond to "
460 "the 'common_*' fields\n");
462 fprintf(ofp
, "# in the format files. Those fields not available as "
463 "handler params can\n");
465 fprintf(ofp
, "# be retrieved using Python functions of the form "
466 "common_*(context).\n");
468 fprintf(ofp
, "# See the perf-trace-python Documentation for the list "
469 "of available functions.\n\n");
471 fprintf(ofp
, "import os\n");
472 fprintf(ofp
, "import sys\n\n");
474 fprintf(ofp
, "sys.path.append(os.environ['PERF_EXEC_PATH'] + \\\n");
475 fprintf(ofp
, "\t'/scripts/python/Perf-Trace-Util/lib/Perf/Trace')\n");
476 fprintf(ofp
, "\nfrom perf_trace_context import *\n");
477 fprintf(ofp
, "from Core import *\n\n\n");
479 fprintf(ofp
, "def trace_begin():\n");
480 fprintf(ofp
, "\tprint \"in trace_begin\"\n\n");
482 fprintf(ofp
, "def trace_end():\n");
483 fprintf(ofp
, "\tprint \"in trace_end\"\n\n");
485 while ((event
= trace_find_next_event(event
))) {
486 fprintf(ofp
, "def %s__%s(", event
->system
, event
->name
);
487 fprintf(ofp
, "event_name, ");
488 fprintf(ofp
, "context, ");
489 fprintf(ofp
, "common_cpu,\n");
490 fprintf(ofp
, "\tcommon_secs, ");
491 fprintf(ofp
, "common_nsecs, ");
492 fprintf(ofp
, "common_pid, ");
493 fprintf(ofp
, "common_comm,\n\t");
498 for (f
= event
->format
.fields
; f
; f
= f
->next
) {
501 if (++count
% 5 == 0)
502 fprintf(ofp
, "\n\t");
504 fprintf(ofp
, "%s", f
->name
);
506 fprintf(ofp
, "):\n");
508 fprintf(ofp
, "\t\tprint_header(event_name, common_cpu, "
509 "common_secs, common_nsecs,\n\t\t\t"
510 "common_pid, common_comm)\n\n");
512 fprintf(ofp
, "\t\tprint \"");
517 for (f
= event
->format
.fields
; f
; f
= f
->next
) {
520 if (count
&& count
% 3 == 0) {
521 fprintf(ofp
, "\" \\\n\t\t\"");
525 fprintf(ofp
, "%s=", f
->name
);
526 if (f
->flags
& FIELD_IS_STRING
||
527 f
->flags
& FIELD_IS_FLAG
||
528 f
->flags
& FIELD_IS_SYMBOLIC
)
530 else if (f
->flags
& FIELD_IS_SIGNED
)
536 fprintf(ofp
, "\\n\" %% \\\n\t\t(");
541 for (f
= event
->format
.fields
; f
; f
= f
->next
) {
545 if (++count
% 5 == 0)
546 fprintf(ofp
, "\n\t\t");
548 if (f
->flags
& FIELD_IS_FLAG
) {
549 if ((count
- 1) % 5 != 0) {
550 fprintf(ofp
, "\n\t\t");
553 fprintf(ofp
, "flag_str(\"");
554 fprintf(ofp
, "%s__%s\", ", event
->system
,
556 fprintf(ofp
, "\"%s\", %s)", f
->name
,
558 } else if (f
->flags
& FIELD_IS_SYMBOLIC
) {
559 if ((count
- 1) % 5 != 0) {
560 fprintf(ofp
, "\n\t\t");
563 fprintf(ofp
, "symbol_str(\"");
564 fprintf(ofp
, "%s__%s\", ", event
->system
,
566 fprintf(ofp
, "\"%s\", %s)", f
->name
,
569 fprintf(ofp
, "%s", f
->name
);
572 fprintf(ofp
, "),\n\n");
575 fprintf(ofp
, "def trace_unhandled(event_name, context, "
576 "event_fields_dict):\n");
578 fprintf(ofp
, "\t\tprint ' '.join(['%%s=%%s'%%(k,str(v))"
579 "for k,v in sorted(event_fields_dict.items())])\n\n");
581 fprintf(ofp
, "def print_header("
582 "event_name, cpu, secs, nsecs, pid, comm):\n"
583 "\tprint \"%%-20s %%5u %%05u.%%09u %%8u %%-20s \" %% \\\n\t"
584 "(event_name, cpu, secs, nsecs, pid, comm),\n");
588 fprintf(stderr
, "generated Python script: %s\n", fname
);
593 struct scripting_ops python_scripting_ops
= {
595 .start_script
= python_start_script
,
596 .stop_script
= python_stop_script
,
597 .process_event
= python_process_event
,
598 .generate_script
= python_generate_script
,