Loading...
1/*
2 * trace-event-python. Feed trace events to an embedded Python interpreter.
3 *
4 * Copyright (C) 2010 Tom Zanussi <tzanussi@gmail.com>
5 *
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.
10 *
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.
15 *
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
19 *
20 */
21
22#include <Python.h>
23
24#include <inttypes.h>
25#include <stdio.h>
26#include <stdlib.h>
27#include <string.h>
28#include <stdbool.h>
29#include <errno.h>
30#include <linux/bitmap.h>
31#include <linux/compiler.h>
32#include <linux/time64.h>
33
34#include "../../perf.h"
35#include "../debug.h"
36#include "../callchain.h"
37#include "../evsel.h"
38#include "../util.h"
39#include "../event.h"
40#include "../thread.h"
41#include "../comm.h"
42#include "../machine.h"
43#include "../db-export.h"
44#include "../thread-stack.h"
45#include "../trace-event.h"
46#include "../call-path.h"
47#include "thread_map.h"
48#include "cpumap.h"
49#include "print_binary.h"
50#include "stat.h"
51
52#if PY_MAJOR_VERSION < 3
53#define _PyUnicode_FromString(arg) \
54 PyString_FromString(arg)
55#define _PyUnicode_FromStringAndSize(arg1, arg2) \
56 PyString_FromStringAndSize((arg1), (arg2))
57#define _PyBytes_FromStringAndSize(arg1, arg2) \
58 PyString_FromStringAndSize((arg1), (arg2))
59#define _PyLong_FromLong(arg) \
60 PyInt_FromLong(arg)
61#define _PyLong_AsLong(arg) \
62 PyInt_AsLong(arg)
63#define _PyCapsule_New(arg1, arg2, arg3) \
64 PyCObject_FromVoidPtr((arg1), (arg2))
65
66PyMODINIT_FUNC initperf_trace_context(void);
67#else
68#define _PyUnicode_FromString(arg) \
69 PyUnicode_FromString(arg)
70#define _PyUnicode_FromStringAndSize(arg1, arg2) \
71 PyUnicode_FromStringAndSize((arg1), (arg2))
72#define _PyBytes_FromStringAndSize(arg1, arg2) \
73 PyBytes_FromStringAndSize((arg1), (arg2))
74#define _PyLong_FromLong(arg) \
75 PyLong_FromLong(arg)
76#define _PyLong_AsLong(arg) \
77 PyLong_AsLong(arg)
78#define _PyCapsule_New(arg1, arg2, arg3) \
79 PyCapsule_New((arg1), (arg2), (arg3))
80
81PyMODINIT_FUNC PyInit_perf_trace_context(void);
82#endif
83
84#define TRACE_EVENT_TYPE_MAX \
85 ((1 << (sizeof(unsigned short) * 8)) - 1)
86
87static DECLARE_BITMAP(events_defined, TRACE_EVENT_TYPE_MAX);
88
89#define MAX_FIELDS 64
90#define N_COMMON_FIELDS 7
91
92extern struct scripting_context *scripting_context;
93
94static char *cur_field_name;
95static int zero_flag_atom;
96
97static PyObject *main_module, *main_dict;
98
99struct tables {
100 struct db_export dbe;
101 PyObject *evsel_handler;
102 PyObject *machine_handler;
103 PyObject *thread_handler;
104 PyObject *comm_handler;
105 PyObject *comm_thread_handler;
106 PyObject *dso_handler;
107 PyObject *symbol_handler;
108 PyObject *branch_type_handler;
109 PyObject *sample_handler;
110 PyObject *call_path_handler;
111 PyObject *call_return_handler;
112 bool db_export_mode;
113};
114
115static struct tables tables_global;
116
117static void handler_call_die(const char *handler_name) __noreturn;
118static void handler_call_die(const char *handler_name)
119{
120 PyErr_Print();
121 Py_FatalError("problem in Python trace event handler");
122 // Py_FatalError does not return
123 // but we have to make the compiler happy
124 abort();
125}
126
127/*
128 * Insert val into into the dictionary and decrement the reference counter.
129 * This is necessary for dictionaries since PyDict_SetItemString() does not
130 * steal a reference, as opposed to PyTuple_SetItem().
131 */
132static void pydict_set_item_string_decref(PyObject *dict, const char *key, PyObject *val)
133{
134 PyDict_SetItemString(dict, key, val);
135 Py_DECREF(val);
136}
137
138static PyObject *get_handler(const char *handler_name)
139{
140 PyObject *handler;
141
142 handler = PyDict_GetItemString(main_dict, handler_name);
143 if (handler && !PyCallable_Check(handler))
144 return NULL;
145 return handler;
146}
147
148static int get_argument_count(PyObject *handler)
149{
150 int arg_count = 0;
151
152 /*
153 * The attribute for the code object is func_code in Python 2,
154 * whereas it is __code__ in Python 3.0+.
155 */
156 PyObject *code_obj = PyObject_GetAttrString(handler,
157 "func_code");
158 if (PyErr_Occurred()) {
159 PyErr_Clear();
160 code_obj = PyObject_GetAttrString(handler,
161 "__code__");
162 }
163 PyErr_Clear();
164 if (code_obj) {
165 PyObject *arg_count_obj = PyObject_GetAttrString(code_obj,
166 "co_argcount");
167 if (arg_count_obj) {
168 arg_count = (int) _PyLong_AsLong(arg_count_obj);
169 Py_DECREF(arg_count_obj);
170 }
171 Py_DECREF(code_obj);
172 }
173 return arg_count;
174}
175
176static void call_object(PyObject *handler, PyObject *args, const char *die_msg)
177{
178 PyObject *retval;
179
180 retval = PyObject_CallObject(handler, args);
181 if (retval == NULL)
182 handler_call_die(die_msg);
183 Py_DECREF(retval);
184}
185
186static void try_call_object(const char *handler_name, PyObject *args)
187{
188 PyObject *handler;
189
190 handler = get_handler(handler_name);
191 if (handler)
192 call_object(handler, args, handler_name);
193}
194
195static void define_value(enum print_arg_type field_type,
196 const char *ev_name,
197 const char *field_name,
198 const char *field_value,
199 const char *field_str)
200{
201 const char *handler_name = "define_flag_value";
202 PyObject *t;
203 unsigned long long value;
204 unsigned n = 0;
205
206 if (field_type == PRINT_SYMBOL)
207 handler_name = "define_symbolic_value";
208
209 t = PyTuple_New(4);
210 if (!t)
211 Py_FatalError("couldn't create Python tuple");
212
213 value = eval_flag(field_value);
214
215 PyTuple_SetItem(t, n++, _PyUnicode_FromString(ev_name));
216 PyTuple_SetItem(t, n++, _PyUnicode_FromString(field_name));
217 PyTuple_SetItem(t, n++, _PyLong_FromLong(value));
218 PyTuple_SetItem(t, n++, _PyUnicode_FromString(field_str));
219
220 try_call_object(handler_name, t);
221
222 Py_DECREF(t);
223}
224
225static void define_values(enum print_arg_type field_type,
226 struct print_flag_sym *field,
227 const char *ev_name,
228 const char *field_name)
229{
230 define_value(field_type, ev_name, field_name, field->value,
231 field->str);
232
233 if (field->next)
234 define_values(field_type, field->next, ev_name, field_name);
235}
236
237static void define_field(enum print_arg_type field_type,
238 const char *ev_name,
239 const char *field_name,
240 const char *delim)
241{
242 const char *handler_name = "define_flag_field";
243 PyObject *t;
244 unsigned n = 0;
245
246 if (field_type == PRINT_SYMBOL)
247 handler_name = "define_symbolic_field";
248
249 if (field_type == PRINT_FLAGS)
250 t = PyTuple_New(3);
251 else
252 t = PyTuple_New(2);
253 if (!t)
254 Py_FatalError("couldn't create Python tuple");
255
256 PyTuple_SetItem(t, n++, _PyUnicode_FromString(ev_name));
257 PyTuple_SetItem(t, n++, _PyUnicode_FromString(field_name));
258 if (field_type == PRINT_FLAGS)
259 PyTuple_SetItem(t, n++, _PyUnicode_FromString(delim));
260
261 try_call_object(handler_name, t);
262
263 Py_DECREF(t);
264}
265
266static void define_event_symbols(struct event_format *event,
267 const char *ev_name,
268 struct print_arg *args)
269{
270 if (args == NULL)
271 return;
272
273 switch (args->type) {
274 case PRINT_NULL:
275 break;
276 case PRINT_ATOM:
277 define_value(PRINT_FLAGS, ev_name, cur_field_name, "0",
278 args->atom.atom);
279 zero_flag_atom = 0;
280 break;
281 case PRINT_FIELD:
282 free(cur_field_name);
283 cur_field_name = strdup(args->field.name);
284 break;
285 case PRINT_FLAGS:
286 define_event_symbols(event, ev_name, args->flags.field);
287 define_field(PRINT_FLAGS, ev_name, cur_field_name,
288 args->flags.delim);
289 define_values(PRINT_FLAGS, args->flags.flags, ev_name,
290 cur_field_name);
291 break;
292 case PRINT_SYMBOL:
293 define_event_symbols(event, ev_name, args->symbol.field);
294 define_field(PRINT_SYMBOL, ev_name, cur_field_name, NULL);
295 define_values(PRINT_SYMBOL, args->symbol.symbols, ev_name,
296 cur_field_name);
297 break;
298 case PRINT_HEX:
299 case PRINT_HEX_STR:
300 define_event_symbols(event, ev_name, args->hex.field);
301 define_event_symbols(event, ev_name, args->hex.size);
302 break;
303 case PRINT_INT_ARRAY:
304 define_event_symbols(event, ev_name, args->int_array.field);
305 define_event_symbols(event, ev_name, args->int_array.count);
306 define_event_symbols(event, ev_name, args->int_array.el_size);
307 break;
308 case PRINT_STRING:
309 break;
310 case PRINT_TYPE:
311 define_event_symbols(event, ev_name, args->typecast.item);
312 break;
313 case PRINT_OP:
314 if (strcmp(args->op.op, ":") == 0)
315 zero_flag_atom = 1;
316 define_event_symbols(event, ev_name, args->op.left);
317 define_event_symbols(event, ev_name, args->op.right);
318 break;
319 default:
320 /* gcc warns for these? */
321 case PRINT_BSTRING:
322 case PRINT_DYNAMIC_ARRAY:
323 case PRINT_DYNAMIC_ARRAY_LEN:
324 case PRINT_FUNC:
325 case PRINT_BITMASK:
326 /* we should warn... */
327 return;
328 }
329
330 if (args->next)
331 define_event_symbols(event, ev_name, args->next);
332}
333
334static PyObject *get_field_numeric_entry(struct event_format *event,
335 struct format_field *field, void *data)
336{
337 bool is_array = field->flags & FIELD_IS_ARRAY;
338 PyObject *obj = NULL, *list = NULL;
339 unsigned long long val;
340 unsigned int item_size, n_items, i;
341
342 if (is_array) {
343 list = PyList_New(field->arraylen);
344 item_size = field->size / field->arraylen;
345 n_items = field->arraylen;
346 } else {
347 item_size = field->size;
348 n_items = 1;
349 }
350
351 for (i = 0; i < n_items; i++) {
352
353 val = read_size(event, data + field->offset + i * item_size,
354 item_size);
355 if (field->flags & FIELD_IS_SIGNED) {
356 if ((long long)val >= LONG_MIN &&
357 (long long)val <= LONG_MAX)
358 obj = _PyLong_FromLong(val);
359 else
360 obj = PyLong_FromLongLong(val);
361 } else {
362 if (val <= LONG_MAX)
363 obj = _PyLong_FromLong(val);
364 else
365 obj = PyLong_FromUnsignedLongLong(val);
366 }
367 if (is_array)
368 PyList_SET_ITEM(list, i, obj);
369 }
370 if (is_array)
371 obj = list;
372 return obj;
373}
374
375
376static PyObject *python_process_callchain(struct perf_sample *sample,
377 struct perf_evsel *evsel,
378 struct addr_location *al)
379{
380 PyObject *pylist;
381
382 pylist = PyList_New(0);
383 if (!pylist)
384 Py_FatalError("couldn't create Python list");
385
386 if (!symbol_conf.use_callchain || !sample->callchain)
387 goto exit;
388
389 if (thread__resolve_callchain(al->thread, &callchain_cursor, evsel,
390 sample, NULL, NULL,
391 scripting_max_stack) != 0) {
392 pr_err("Failed to resolve callchain. Skipping\n");
393 goto exit;
394 }
395 callchain_cursor_commit(&callchain_cursor);
396
397
398 while (1) {
399 PyObject *pyelem;
400 struct callchain_cursor_node *node;
401 node = callchain_cursor_current(&callchain_cursor);
402 if (!node)
403 break;
404
405 pyelem = PyDict_New();
406 if (!pyelem)
407 Py_FatalError("couldn't create Python dictionary");
408
409
410 pydict_set_item_string_decref(pyelem, "ip",
411 PyLong_FromUnsignedLongLong(node->ip));
412
413 if (node->sym) {
414 PyObject *pysym = PyDict_New();
415 if (!pysym)
416 Py_FatalError("couldn't create Python dictionary");
417 pydict_set_item_string_decref(pysym, "start",
418 PyLong_FromUnsignedLongLong(node->sym->start));
419 pydict_set_item_string_decref(pysym, "end",
420 PyLong_FromUnsignedLongLong(node->sym->end));
421 pydict_set_item_string_decref(pysym, "binding",
422 _PyLong_FromLong(node->sym->binding));
423 pydict_set_item_string_decref(pysym, "name",
424 _PyUnicode_FromStringAndSize(node->sym->name,
425 node->sym->namelen));
426 pydict_set_item_string_decref(pyelem, "sym", pysym);
427 }
428
429 if (node->map) {
430 struct map *map = node->map;
431 const char *dsoname = "[unknown]";
432 if (map && map->dso) {
433 if (symbol_conf.show_kernel_path && map->dso->long_name)
434 dsoname = map->dso->long_name;
435 else
436 dsoname = map->dso->name;
437 }
438 pydict_set_item_string_decref(pyelem, "dso",
439 _PyUnicode_FromString(dsoname));
440 }
441
442 callchain_cursor_advance(&callchain_cursor);
443 PyList_Append(pylist, pyelem);
444 Py_DECREF(pyelem);
445 }
446
447exit:
448 return pylist;
449}
450
451static PyObject *get_sample_value_as_tuple(struct sample_read_value *value)
452{
453 PyObject *t;
454
455 t = PyTuple_New(2);
456 if (!t)
457 Py_FatalError("couldn't create Python tuple");
458 PyTuple_SetItem(t, 0, PyLong_FromUnsignedLongLong(value->id));
459 PyTuple_SetItem(t, 1, PyLong_FromUnsignedLongLong(value->value));
460 return t;
461}
462
463static void set_sample_read_in_dict(PyObject *dict_sample,
464 struct perf_sample *sample,
465 struct perf_evsel *evsel)
466{
467 u64 read_format = evsel->attr.read_format;
468 PyObject *values;
469 unsigned int i;
470
471 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
472 pydict_set_item_string_decref(dict_sample, "time_enabled",
473 PyLong_FromUnsignedLongLong(sample->read.time_enabled));
474 }
475
476 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
477 pydict_set_item_string_decref(dict_sample, "time_running",
478 PyLong_FromUnsignedLongLong(sample->read.time_running));
479 }
480
481 if (read_format & PERF_FORMAT_GROUP)
482 values = PyList_New(sample->read.group.nr);
483 else
484 values = PyList_New(1);
485
486 if (!values)
487 Py_FatalError("couldn't create Python list");
488
489 if (read_format & PERF_FORMAT_GROUP) {
490 for (i = 0; i < sample->read.group.nr; i++) {
491 PyObject *t = get_sample_value_as_tuple(&sample->read.group.values[i]);
492 PyList_SET_ITEM(values, i, t);
493 }
494 } else {
495 PyObject *t = get_sample_value_as_tuple(&sample->read.one);
496 PyList_SET_ITEM(values, 0, t);
497 }
498 pydict_set_item_string_decref(dict_sample, "values", values);
499}
500
501static PyObject *get_perf_sample_dict(struct perf_sample *sample,
502 struct perf_evsel *evsel,
503 struct addr_location *al,
504 PyObject *callchain)
505{
506 PyObject *dict, *dict_sample;
507
508 dict = PyDict_New();
509 if (!dict)
510 Py_FatalError("couldn't create Python dictionary");
511
512 dict_sample = PyDict_New();
513 if (!dict_sample)
514 Py_FatalError("couldn't create Python dictionary");
515
516 pydict_set_item_string_decref(dict, "ev_name", _PyUnicode_FromString(perf_evsel__name(evsel)));
517 pydict_set_item_string_decref(dict, "attr", _PyUnicode_FromStringAndSize(
518 (const char *)&evsel->attr, sizeof(evsel->attr)));
519
520 pydict_set_item_string_decref(dict_sample, "pid",
521 _PyLong_FromLong(sample->pid));
522 pydict_set_item_string_decref(dict_sample, "tid",
523 _PyLong_FromLong(sample->tid));
524 pydict_set_item_string_decref(dict_sample, "cpu",
525 _PyLong_FromLong(sample->cpu));
526 pydict_set_item_string_decref(dict_sample, "ip",
527 PyLong_FromUnsignedLongLong(sample->ip));
528 pydict_set_item_string_decref(dict_sample, "time",
529 PyLong_FromUnsignedLongLong(sample->time));
530 pydict_set_item_string_decref(dict_sample, "period",
531 PyLong_FromUnsignedLongLong(sample->period));
532 pydict_set_item_string_decref(dict_sample, "phys_addr",
533 PyLong_FromUnsignedLongLong(sample->phys_addr));
534 pydict_set_item_string_decref(dict_sample, "addr",
535 PyLong_FromUnsignedLongLong(sample->addr));
536 set_sample_read_in_dict(dict_sample, sample, evsel);
537 pydict_set_item_string_decref(dict, "sample", dict_sample);
538
539 pydict_set_item_string_decref(dict, "raw_buf", _PyBytes_FromStringAndSize(
540 (const char *)sample->raw_data, sample->raw_size));
541 pydict_set_item_string_decref(dict, "comm",
542 _PyUnicode_FromString(thread__comm_str(al->thread)));
543 if (al->map) {
544 pydict_set_item_string_decref(dict, "dso",
545 _PyUnicode_FromString(al->map->dso->name));
546 }
547 if (al->sym) {
548 pydict_set_item_string_decref(dict, "symbol",
549 _PyUnicode_FromString(al->sym->name));
550 }
551
552 pydict_set_item_string_decref(dict, "callchain", callchain);
553
554 return dict;
555}
556
557static void python_process_tracepoint(struct perf_sample *sample,
558 struct perf_evsel *evsel,
559 struct addr_location *al)
560{
561 struct event_format *event = evsel->tp_format;
562 PyObject *handler, *context, *t, *obj = NULL, *callchain;
563 PyObject *dict = NULL, *all_entries_dict = NULL;
564 static char handler_name[256];
565 struct format_field *field;
566 unsigned long s, ns;
567 unsigned n = 0;
568 int pid;
569 int cpu = sample->cpu;
570 void *data = sample->raw_data;
571 unsigned long long nsecs = sample->time;
572 const char *comm = thread__comm_str(al->thread);
573 const char *default_handler_name = "trace_unhandled";
574
575 if (!event) {
576 snprintf(handler_name, sizeof(handler_name),
577 "ug! no event found for type %" PRIu64, (u64)evsel->attr.config);
578 Py_FatalError(handler_name);
579 }
580
581 pid = raw_field_value(event, "common_pid", data);
582
583 sprintf(handler_name, "%s__%s", event->system, event->name);
584
585 if (!test_and_set_bit(event->id, events_defined))
586 define_event_symbols(event, handler_name, event->print_fmt.args);
587
588 handler = get_handler(handler_name);
589 if (!handler) {
590 handler = get_handler(default_handler_name);
591 if (!handler)
592 return;
593 dict = PyDict_New();
594 if (!dict)
595 Py_FatalError("couldn't create Python dict");
596 }
597
598 t = PyTuple_New(MAX_FIELDS);
599 if (!t)
600 Py_FatalError("couldn't create Python tuple");
601
602
603 s = nsecs / NSEC_PER_SEC;
604 ns = nsecs - s * NSEC_PER_SEC;
605
606 scripting_context->event_data = data;
607 scripting_context->pevent = evsel->tp_format->pevent;
608
609 context = _PyCapsule_New(scripting_context, NULL, NULL);
610
611 PyTuple_SetItem(t, n++, _PyUnicode_FromString(handler_name));
612 PyTuple_SetItem(t, n++, context);
613
614 /* ip unwinding */
615 callchain = python_process_callchain(sample, evsel, al);
616 /* Need an additional reference for the perf_sample dict */
617 Py_INCREF(callchain);
618
619 if (!dict) {
620 PyTuple_SetItem(t, n++, _PyLong_FromLong(cpu));
621 PyTuple_SetItem(t, n++, _PyLong_FromLong(s));
622 PyTuple_SetItem(t, n++, _PyLong_FromLong(ns));
623 PyTuple_SetItem(t, n++, _PyLong_FromLong(pid));
624 PyTuple_SetItem(t, n++, _PyUnicode_FromString(comm));
625 PyTuple_SetItem(t, n++, callchain);
626 } else {
627 pydict_set_item_string_decref(dict, "common_cpu", _PyLong_FromLong(cpu));
628 pydict_set_item_string_decref(dict, "common_s", _PyLong_FromLong(s));
629 pydict_set_item_string_decref(dict, "common_ns", _PyLong_FromLong(ns));
630 pydict_set_item_string_decref(dict, "common_pid", _PyLong_FromLong(pid));
631 pydict_set_item_string_decref(dict, "common_comm", _PyUnicode_FromString(comm));
632 pydict_set_item_string_decref(dict, "common_callchain", callchain);
633 }
634 for (field = event->format.fields; field; field = field->next) {
635 unsigned int offset, len;
636 unsigned long long val;
637
638 if (field->flags & FIELD_IS_ARRAY) {
639 offset = field->offset;
640 len = field->size;
641 if (field->flags & FIELD_IS_DYNAMIC) {
642 val = pevent_read_number(scripting_context->pevent,
643 data + offset, len);
644 offset = val;
645 len = offset >> 16;
646 offset &= 0xffff;
647 }
648 if (field->flags & FIELD_IS_STRING &&
649 is_printable_array(data + offset, len)) {
650 obj = _PyUnicode_FromString((char *) data + offset);
651 } else {
652 obj = PyByteArray_FromStringAndSize((const char *) data + offset, len);
653 field->flags &= ~FIELD_IS_STRING;
654 }
655 } else { /* FIELD_IS_NUMERIC */
656 obj = get_field_numeric_entry(event, field, data);
657 }
658 if (!dict)
659 PyTuple_SetItem(t, n++, obj);
660 else
661 pydict_set_item_string_decref(dict, field->name, obj);
662
663 }
664
665 if (dict)
666 PyTuple_SetItem(t, n++, dict);
667
668 if (get_argument_count(handler) == (int) n + 1) {
669 all_entries_dict = get_perf_sample_dict(sample, evsel, al,
670 callchain);
671 PyTuple_SetItem(t, n++, all_entries_dict);
672 } else {
673 Py_DECREF(callchain);
674 }
675
676 if (_PyTuple_Resize(&t, n) == -1)
677 Py_FatalError("error resizing Python tuple");
678
679 if (!dict) {
680 call_object(handler, t, handler_name);
681 } else {
682 call_object(handler, t, default_handler_name);
683 Py_DECREF(dict);
684 }
685
686 Py_XDECREF(all_entries_dict);
687 Py_DECREF(t);
688}
689
690static PyObject *tuple_new(unsigned int sz)
691{
692 PyObject *t;
693
694 t = PyTuple_New(sz);
695 if (!t)
696 Py_FatalError("couldn't create Python tuple");
697 return t;
698}
699
700static int tuple_set_u64(PyObject *t, unsigned int pos, u64 val)
701{
702#if BITS_PER_LONG == 64
703 return PyTuple_SetItem(t, pos, _PyLong_FromLong(val));
704#endif
705#if BITS_PER_LONG == 32
706 return PyTuple_SetItem(t, pos, PyLong_FromLongLong(val));
707#endif
708}
709
710static int tuple_set_s32(PyObject *t, unsigned int pos, s32 val)
711{
712 return PyTuple_SetItem(t, pos, _PyLong_FromLong(val));
713}
714
715static int tuple_set_string(PyObject *t, unsigned int pos, const char *s)
716{
717 return PyTuple_SetItem(t, pos, _PyUnicode_FromString(s));
718}
719
720static int python_export_evsel(struct db_export *dbe, struct perf_evsel *evsel)
721{
722 struct tables *tables = container_of(dbe, struct tables, dbe);
723 PyObject *t;
724
725 t = tuple_new(2);
726
727 tuple_set_u64(t, 0, evsel->db_id);
728 tuple_set_string(t, 1, perf_evsel__name(evsel));
729
730 call_object(tables->evsel_handler, t, "evsel_table");
731
732 Py_DECREF(t);
733
734 return 0;
735}
736
737static int python_export_machine(struct db_export *dbe,
738 struct machine *machine)
739{
740 struct tables *tables = container_of(dbe, struct tables, dbe);
741 PyObject *t;
742
743 t = tuple_new(3);
744
745 tuple_set_u64(t, 0, machine->db_id);
746 tuple_set_s32(t, 1, machine->pid);
747 tuple_set_string(t, 2, machine->root_dir ? machine->root_dir : "");
748
749 call_object(tables->machine_handler, t, "machine_table");
750
751 Py_DECREF(t);
752
753 return 0;
754}
755
756static int python_export_thread(struct db_export *dbe, struct thread *thread,
757 u64 main_thread_db_id, struct machine *machine)
758{
759 struct tables *tables = container_of(dbe, struct tables, dbe);
760 PyObject *t;
761
762 t = tuple_new(5);
763
764 tuple_set_u64(t, 0, thread->db_id);
765 tuple_set_u64(t, 1, machine->db_id);
766 tuple_set_u64(t, 2, main_thread_db_id);
767 tuple_set_s32(t, 3, thread->pid_);
768 tuple_set_s32(t, 4, thread->tid);
769
770 call_object(tables->thread_handler, t, "thread_table");
771
772 Py_DECREF(t);
773
774 return 0;
775}
776
777static int python_export_comm(struct db_export *dbe, struct comm *comm)
778{
779 struct tables *tables = container_of(dbe, struct tables, dbe);
780 PyObject *t;
781
782 t = tuple_new(2);
783
784 tuple_set_u64(t, 0, comm->db_id);
785 tuple_set_string(t, 1, comm__str(comm));
786
787 call_object(tables->comm_handler, t, "comm_table");
788
789 Py_DECREF(t);
790
791 return 0;
792}
793
794static int python_export_comm_thread(struct db_export *dbe, u64 db_id,
795 struct comm *comm, struct thread *thread)
796{
797 struct tables *tables = container_of(dbe, struct tables, dbe);
798 PyObject *t;
799
800 t = tuple_new(3);
801
802 tuple_set_u64(t, 0, db_id);
803 tuple_set_u64(t, 1, comm->db_id);
804 tuple_set_u64(t, 2, thread->db_id);
805
806 call_object(tables->comm_thread_handler, t, "comm_thread_table");
807
808 Py_DECREF(t);
809
810 return 0;
811}
812
813static int python_export_dso(struct db_export *dbe, struct dso *dso,
814 struct machine *machine)
815{
816 struct tables *tables = container_of(dbe, struct tables, dbe);
817 char sbuild_id[SBUILD_ID_SIZE];
818 PyObject *t;
819
820 build_id__sprintf(dso->build_id, sizeof(dso->build_id), sbuild_id);
821
822 t = tuple_new(5);
823
824 tuple_set_u64(t, 0, dso->db_id);
825 tuple_set_u64(t, 1, machine->db_id);
826 tuple_set_string(t, 2, dso->short_name);
827 tuple_set_string(t, 3, dso->long_name);
828 tuple_set_string(t, 4, sbuild_id);
829
830 call_object(tables->dso_handler, t, "dso_table");
831
832 Py_DECREF(t);
833
834 return 0;
835}
836
837static int python_export_symbol(struct db_export *dbe, struct symbol *sym,
838 struct dso *dso)
839{
840 struct tables *tables = container_of(dbe, struct tables, dbe);
841 u64 *sym_db_id = symbol__priv(sym);
842 PyObject *t;
843
844 t = tuple_new(6);
845
846 tuple_set_u64(t, 0, *sym_db_id);
847 tuple_set_u64(t, 1, dso->db_id);
848 tuple_set_u64(t, 2, sym->start);
849 tuple_set_u64(t, 3, sym->end);
850 tuple_set_s32(t, 4, sym->binding);
851 tuple_set_string(t, 5, sym->name);
852
853 call_object(tables->symbol_handler, t, "symbol_table");
854
855 Py_DECREF(t);
856
857 return 0;
858}
859
860static int python_export_branch_type(struct db_export *dbe, u32 branch_type,
861 const char *name)
862{
863 struct tables *tables = container_of(dbe, struct tables, dbe);
864 PyObject *t;
865
866 t = tuple_new(2);
867
868 tuple_set_s32(t, 0, branch_type);
869 tuple_set_string(t, 1, name);
870
871 call_object(tables->branch_type_handler, t, "branch_type_table");
872
873 Py_DECREF(t);
874
875 return 0;
876}
877
878static int python_export_sample(struct db_export *dbe,
879 struct export_sample *es)
880{
881 struct tables *tables = container_of(dbe, struct tables, dbe);
882 PyObject *t;
883
884 t = tuple_new(22);
885
886 tuple_set_u64(t, 0, es->db_id);
887 tuple_set_u64(t, 1, es->evsel->db_id);
888 tuple_set_u64(t, 2, es->al->machine->db_id);
889 tuple_set_u64(t, 3, es->al->thread->db_id);
890 tuple_set_u64(t, 4, es->comm_db_id);
891 tuple_set_u64(t, 5, es->dso_db_id);
892 tuple_set_u64(t, 6, es->sym_db_id);
893 tuple_set_u64(t, 7, es->offset);
894 tuple_set_u64(t, 8, es->sample->ip);
895 tuple_set_u64(t, 9, es->sample->time);
896 tuple_set_s32(t, 10, es->sample->cpu);
897 tuple_set_u64(t, 11, es->addr_dso_db_id);
898 tuple_set_u64(t, 12, es->addr_sym_db_id);
899 tuple_set_u64(t, 13, es->addr_offset);
900 tuple_set_u64(t, 14, es->sample->addr);
901 tuple_set_u64(t, 15, es->sample->period);
902 tuple_set_u64(t, 16, es->sample->weight);
903 tuple_set_u64(t, 17, es->sample->transaction);
904 tuple_set_u64(t, 18, es->sample->data_src);
905 tuple_set_s32(t, 19, es->sample->flags & PERF_BRANCH_MASK);
906 tuple_set_s32(t, 20, !!(es->sample->flags & PERF_IP_FLAG_IN_TX));
907 tuple_set_u64(t, 21, es->call_path_id);
908
909 call_object(tables->sample_handler, t, "sample_table");
910
911 Py_DECREF(t);
912
913 return 0;
914}
915
916static int python_export_call_path(struct db_export *dbe, struct call_path *cp)
917{
918 struct tables *tables = container_of(dbe, struct tables, dbe);
919 PyObject *t;
920 u64 parent_db_id, sym_db_id;
921
922 parent_db_id = cp->parent ? cp->parent->db_id : 0;
923 sym_db_id = cp->sym ? *(u64 *)symbol__priv(cp->sym) : 0;
924
925 t = tuple_new(4);
926
927 tuple_set_u64(t, 0, cp->db_id);
928 tuple_set_u64(t, 1, parent_db_id);
929 tuple_set_u64(t, 2, sym_db_id);
930 tuple_set_u64(t, 3, cp->ip);
931
932 call_object(tables->call_path_handler, t, "call_path_table");
933
934 Py_DECREF(t);
935
936 return 0;
937}
938
939static int python_export_call_return(struct db_export *dbe,
940 struct call_return *cr)
941{
942 struct tables *tables = container_of(dbe, struct tables, dbe);
943 u64 comm_db_id = cr->comm ? cr->comm->db_id : 0;
944 PyObject *t;
945
946 t = tuple_new(11);
947
948 tuple_set_u64(t, 0, cr->db_id);
949 tuple_set_u64(t, 1, cr->thread->db_id);
950 tuple_set_u64(t, 2, comm_db_id);
951 tuple_set_u64(t, 3, cr->cp->db_id);
952 tuple_set_u64(t, 4, cr->call_time);
953 tuple_set_u64(t, 5, cr->return_time);
954 tuple_set_u64(t, 6, cr->branch_count);
955 tuple_set_u64(t, 7, cr->call_ref);
956 tuple_set_u64(t, 8, cr->return_ref);
957 tuple_set_u64(t, 9, cr->cp->parent->db_id);
958 tuple_set_s32(t, 10, cr->flags);
959
960 call_object(tables->call_return_handler, t, "call_return_table");
961
962 Py_DECREF(t);
963
964 return 0;
965}
966
967static int python_process_call_return(struct call_return *cr, void *data)
968{
969 struct db_export *dbe = data;
970
971 return db_export__call_return(dbe, cr);
972}
973
974static void python_process_general_event(struct perf_sample *sample,
975 struct perf_evsel *evsel,
976 struct addr_location *al)
977{
978 PyObject *handler, *t, *dict, *callchain;
979 static char handler_name[64];
980 unsigned n = 0;
981
982 snprintf(handler_name, sizeof(handler_name), "%s", "process_event");
983
984 handler = get_handler(handler_name);
985 if (!handler)
986 return;
987
988 /*
989 * Use the MAX_FIELDS to make the function expandable, though
990 * currently there is only one item for the tuple.
991 */
992 t = PyTuple_New(MAX_FIELDS);
993 if (!t)
994 Py_FatalError("couldn't create Python tuple");
995
996 /* ip unwinding */
997 callchain = python_process_callchain(sample, evsel, al);
998 dict = get_perf_sample_dict(sample, evsel, al, callchain);
999
1000 PyTuple_SetItem(t, n++, dict);
1001 if (_PyTuple_Resize(&t, n) == -1)
1002 Py_FatalError("error resizing Python tuple");
1003
1004 call_object(handler, t, handler_name);
1005
1006 Py_DECREF(dict);
1007 Py_DECREF(t);
1008}
1009
1010static void python_process_event(union perf_event *event,
1011 struct perf_sample *sample,
1012 struct perf_evsel *evsel,
1013 struct addr_location *al)
1014{
1015 struct tables *tables = &tables_global;
1016
1017 switch (evsel->attr.type) {
1018 case PERF_TYPE_TRACEPOINT:
1019 python_process_tracepoint(sample, evsel, al);
1020 break;
1021 /* Reserve for future process_hw/sw/raw APIs */
1022 default:
1023 if (tables->db_export_mode)
1024 db_export__sample(&tables->dbe, event, sample, evsel, al);
1025 else
1026 python_process_general_event(sample, evsel, al);
1027 }
1028}
1029
1030static void get_handler_name(char *str, size_t size,
1031 struct perf_evsel *evsel)
1032{
1033 char *p = str;
1034
1035 scnprintf(str, size, "stat__%s", perf_evsel__name(evsel));
1036
1037 while ((p = strchr(p, ':'))) {
1038 *p = '_';
1039 p++;
1040 }
1041}
1042
1043static void
1044process_stat(struct perf_evsel *counter, int cpu, int thread, u64 tstamp,
1045 struct perf_counts_values *count)
1046{
1047 PyObject *handler, *t;
1048 static char handler_name[256];
1049 int n = 0;
1050
1051 t = PyTuple_New(MAX_FIELDS);
1052 if (!t)
1053 Py_FatalError("couldn't create Python tuple");
1054
1055 get_handler_name(handler_name, sizeof(handler_name),
1056 counter);
1057
1058 handler = get_handler(handler_name);
1059 if (!handler) {
1060 pr_debug("can't find python handler %s\n", handler_name);
1061 return;
1062 }
1063
1064 PyTuple_SetItem(t, n++, _PyLong_FromLong(cpu));
1065 PyTuple_SetItem(t, n++, _PyLong_FromLong(thread));
1066
1067 tuple_set_u64(t, n++, tstamp);
1068 tuple_set_u64(t, n++, count->val);
1069 tuple_set_u64(t, n++, count->ena);
1070 tuple_set_u64(t, n++, count->run);
1071
1072 if (_PyTuple_Resize(&t, n) == -1)
1073 Py_FatalError("error resizing Python tuple");
1074
1075 call_object(handler, t, handler_name);
1076
1077 Py_DECREF(t);
1078}
1079
1080static void python_process_stat(struct perf_stat_config *config,
1081 struct perf_evsel *counter, u64 tstamp)
1082{
1083 struct thread_map *threads = counter->threads;
1084 struct cpu_map *cpus = counter->cpus;
1085 int cpu, thread;
1086
1087 if (config->aggr_mode == AGGR_GLOBAL) {
1088 process_stat(counter, -1, -1, tstamp,
1089 &counter->counts->aggr);
1090 return;
1091 }
1092
1093 for (thread = 0; thread < threads->nr; thread++) {
1094 for (cpu = 0; cpu < cpus->nr; cpu++) {
1095 process_stat(counter, cpus->map[cpu],
1096 thread_map__pid(threads, thread), tstamp,
1097 perf_counts(counter->counts, cpu, thread));
1098 }
1099 }
1100}
1101
1102static void python_process_stat_interval(u64 tstamp)
1103{
1104 PyObject *handler, *t;
1105 static const char handler_name[] = "stat__interval";
1106 int n = 0;
1107
1108 t = PyTuple_New(MAX_FIELDS);
1109 if (!t)
1110 Py_FatalError("couldn't create Python tuple");
1111
1112 handler = get_handler(handler_name);
1113 if (!handler) {
1114 pr_debug("can't find python handler %s\n", handler_name);
1115 return;
1116 }
1117
1118 tuple_set_u64(t, n++, tstamp);
1119
1120 if (_PyTuple_Resize(&t, n) == -1)
1121 Py_FatalError("error resizing Python tuple");
1122
1123 call_object(handler, t, handler_name);
1124
1125 Py_DECREF(t);
1126}
1127
1128static int run_start_sub(void)
1129{
1130 main_module = PyImport_AddModule("__main__");
1131 if (main_module == NULL)
1132 return -1;
1133 Py_INCREF(main_module);
1134
1135 main_dict = PyModule_GetDict(main_module);
1136 if (main_dict == NULL)
1137 goto error;
1138 Py_INCREF(main_dict);
1139
1140 try_call_object("trace_begin", NULL);
1141
1142 return 0;
1143
1144error:
1145 Py_XDECREF(main_dict);
1146 Py_XDECREF(main_module);
1147 return -1;
1148}
1149
1150#define SET_TABLE_HANDLER_(name, handler_name, table_name) do { \
1151 tables->handler_name = get_handler(#table_name); \
1152 if (tables->handler_name) \
1153 tables->dbe.export_ ## name = python_export_ ## name; \
1154} while (0)
1155
1156#define SET_TABLE_HANDLER(name) \
1157 SET_TABLE_HANDLER_(name, name ## _handler, name ## _table)
1158
1159static void set_table_handlers(struct tables *tables)
1160{
1161 const char *perf_db_export_mode = "perf_db_export_mode";
1162 const char *perf_db_export_calls = "perf_db_export_calls";
1163 const char *perf_db_export_callchains = "perf_db_export_callchains";
1164 PyObject *db_export_mode, *db_export_calls, *db_export_callchains;
1165 bool export_calls = false;
1166 bool export_callchains = false;
1167 int ret;
1168
1169 memset(tables, 0, sizeof(struct tables));
1170 if (db_export__init(&tables->dbe))
1171 Py_FatalError("failed to initialize export");
1172
1173 db_export_mode = PyDict_GetItemString(main_dict, perf_db_export_mode);
1174 if (!db_export_mode)
1175 return;
1176
1177 ret = PyObject_IsTrue(db_export_mode);
1178 if (ret == -1)
1179 handler_call_die(perf_db_export_mode);
1180 if (!ret)
1181 return;
1182
1183 /* handle export calls */
1184 tables->dbe.crp = NULL;
1185 db_export_calls = PyDict_GetItemString(main_dict, perf_db_export_calls);
1186 if (db_export_calls) {
1187 ret = PyObject_IsTrue(db_export_calls);
1188 if (ret == -1)
1189 handler_call_die(perf_db_export_calls);
1190 export_calls = !!ret;
1191 }
1192
1193 if (export_calls) {
1194 tables->dbe.crp =
1195 call_return_processor__new(python_process_call_return,
1196 &tables->dbe);
1197 if (!tables->dbe.crp)
1198 Py_FatalError("failed to create calls processor");
1199 }
1200
1201 /* handle export callchains */
1202 tables->dbe.cpr = NULL;
1203 db_export_callchains = PyDict_GetItemString(main_dict,
1204 perf_db_export_callchains);
1205 if (db_export_callchains) {
1206 ret = PyObject_IsTrue(db_export_callchains);
1207 if (ret == -1)
1208 handler_call_die(perf_db_export_callchains);
1209 export_callchains = !!ret;
1210 }
1211
1212 if (export_callchains) {
1213 /*
1214 * Attempt to use the call path root from the call return
1215 * processor, if the call return processor is in use. Otherwise,
1216 * we allocate a new call path root. This prevents exporting
1217 * duplicate call path ids when both are in use simultaniously.
1218 */
1219 if (tables->dbe.crp)
1220 tables->dbe.cpr = tables->dbe.crp->cpr;
1221 else
1222 tables->dbe.cpr = call_path_root__new();
1223
1224 if (!tables->dbe.cpr)
1225 Py_FatalError("failed to create call path root");
1226 }
1227
1228 tables->db_export_mode = true;
1229 /*
1230 * Reserve per symbol space for symbol->db_id via symbol__priv()
1231 */
1232 symbol_conf.priv_size = sizeof(u64);
1233
1234 SET_TABLE_HANDLER(evsel);
1235 SET_TABLE_HANDLER(machine);
1236 SET_TABLE_HANDLER(thread);
1237 SET_TABLE_HANDLER(comm);
1238 SET_TABLE_HANDLER(comm_thread);
1239 SET_TABLE_HANDLER(dso);
1240 SET_TABLE_HANDLER(symbol);
1241 SET_TABLE_HANDLER(branch_type);
1242 SET_TABLE_HANDLER(sample);
1243 SET_TABLE_HANDLER(call_path);
1244 SET_TABLE_HANDLER(call_return);
1245}
1246
1247#if PY_MAJOR_VERSION < 3
1248static void _free_command_line(const char **command_line, int num)
1249{
1250 free(command_line);
1251}
1252#else
1253static void _free_command_line(wchar_t **command_line, int num)
1254{
1255 int i;
1256 for (i = 0; i < num; i++)
1257 PyMem_RawFree(command_line[i]);
1258 free(command_line);
1259}
1260#endif
1261
1262
1263/*
1264 * Start trace script
1265 */
1266static int python_start_script(const char *script, int argc, const char **argv)
1267{
1268 struct tables *tables = &tables_global;
1269#if PY_MAJOR_VERSION < 3
1270 const char **command_line;
1271#else
1272 wchar_t **command_line;
1273#endif
1274 char buf[PATH_MAX];
1275 int i, err = 0;
1276 FILE *fp;
1277
1278#if PY_MAJOR_VERSION < 3
1279 command_line = malloc((argc + 1) * sizeof(const char *));
1280 command_line[0] = script;
1281 for (i = 1; i < argc + 1; i++)
1282 command_line[i] = argv[i - 1];
1283#else
1284 command_line = malloc((argc + 1) * sizeof(wchar_t *));
1285 command_line[0] = Py_DecodeLocale(script, NULL);
1286 for (i = 1; i < argc + 1; i++)
1287 command_line[i] = Py_DecodeLocale(argv[i - 1], NULL);
1288#endif
1289
1290 Py_Initialize();
1291
1292#if PY_MAJOR_VERSION < 3
1293 initperf_trace_context();
1294 PySys_SetArgv(argc + 1, (char **)command_line);
1295#else
1296 PyInit_perf_trace_context();
1297 PySys_SetArgv(argc + 1, command_line);
1298#endif
1299
1300 fp = fopen(script, "r");
1301 if (!fp) {
1302 sprintf(buf, "Can't open python script \"%s\"", script);
1303 perror(buf);
1304 err = -1;
1305 goto error;
1306 }
1307
1308 err = PyRun_SimpleFile(fp, script);
1309 if (err) {
1310 fprintf(stderr, "Error running python script %s\n", script);
1311 goto error;
1312 }
1313
1314 err = run_start_sub();
1315 if (err) {
1316 fprintf(stderr, "Error starting python script %s\n", script);
1317 goto error;
1318 }
1319
1320 set_table_handlers(tables);
1321
1322 if (tables->db_export_mode) {
1323 err = db_export__branch_types(&tables->dbe);
1324 if (err)
1325 goto error;
1326 }
1327
1328 _free_command_line(command_line, argc + 1);
1329
1330 return err;
1331error:
1332 Py_Finalize();
1333 _free_command_line(command_line, argc + 1);
1334
1335 return err;
1336}
1337
1338static int python_flush_script(void)
1339{
1340 struct tables *tables = &tables_global;
1341
1342 return db_export__flush(&tables->dbe);
1343}
1344
1345/*
1346 * Stop trace script
1347 */
1348static int python_stop_script(void)
1349{
1350 struct tables *tables = &tables_global;
1351
1352 try_call_object("trace_end", NULL);
1353
1354 db_export__exit(&tables->dbe);
1355
1356 Py_XDECREF(main_dict);
1357 Py_XDECREF(main_module);
1358 Py_Finalize();
1359
1360 return 0;
1361}
1362
1363static int python_generate_script(struct pevent *pevent, const char *outfile)
1364{
1365 struct event_format *event = NULL;
1366 struct format_field *f;
1367 char fname[PATH_MAX];
1368 int not_first, count;
1369 FILE *ofp;
1370
1371 sprintf(fname, "%s.py", outfile);
1372 ofp = fopen(fname, "w");
1373 if (ofp == NULL) {
1374 fprintf(stderr, "couldn't open %s\n", fname);
1375 return -1;
1376 }
1377 fprintf(ofp, "# perf script event handlers, "
1378 "generated by perf script -g python\n");
1379
1380 fprintf(ofp, "# Licensed under the terms of the GNU GPL"
1381 " License version 2\n\n");
1382
1383 fprintf(ofp, "# The common_* event handler fields are the most useful "
1384 "fields common to\n");
1385
1386 fprintf(ofp, "# all events. They don't necessarily correspond to "
1387 "the 'common_*' fields\n");
1388
1389 fprintf(ofp, "# in the format files. Those fields not available as "
1390 "handler params can\n");
1391
1392 fprintf(ofp, "# be retrieved using Python functions of the form "
1393 "common_*(context).\n");
1394
1395 fprintf(ofp, "# See the perf-script-python Documentation for the list "
1396 "of available functions.\n\n");
1397
1398 fprintf(ofp, "import os\n");
1399 fprintf(ofp, "import sys\n\n");
1400
1401 fprintf(ofp, "sys.path.append(os.environ['PERF_EXEC_PATH'] + \\\n");
1402 fprintf(ofp, "\t'/scripts/python/Perf-Trace-Util/lib/Perf/Trace')\n");
1403 fprintf(ofp, "\nfrom perf_trace_context import *\n");
1404 fprintf(ofp, "from Core import *\n\n\n");
1405
1406 fprintf(ofp, "def trace_begin():\n");
1407 fprintf(ofp, "\tprint \"in trace_begin\"\n\n");
1408
1409 fprintf(ofp, "def trace_end():\n");
1410 fprintf(ofp, "\tprint \"in trace_end\"\n\n");
1411
1412 while ((event = trace_find_next_event(pevent, event))) {
1413 fprintf(ofp, "def %s__%s(", event->system, event->name);
1414 fprintf(ofp, "event_name, ");
1415 fprintf(ofp, "context, ");
1416 fprintf(ofp, "common_cpu,\n");
1417 fprintf(ofp, "\tcommon_secs, ");
1418 fprintf(ofp, "common_nsecs, ");
1419 fprintf(ofp, "common_pid, ");
1420 fprintf(ofp, "common_comm,\n\t");
1421 fprintf(ofp, "common_callchain, ");
1422
1423 not_first = 0;
1424 count = 0;
1425
1426 for (f = event->format.fields; f; f = f->next) {
1427 if (not_first++)
1428 fprintf(ofp, ", ");
1429 if (++count % 5 == 0)
1430 fprintf(ofp, "\n\t");
1431
1432 fprintf(ofp, "%s", f->name);
1433 }
1434 if (not_first++)
1435 fprintf(ofp, ", ");
1436 if (++count % 5 == 0)
1437 fprintf(ofp, "\n\t\t");
1438 fprintf(ofp, "perf_sample_dict");
1439
1440 fprintf(ofp, "):\n");
1441
1442 fprintf(ofp, "\t\tprint_header(event_name, common_cpu, "
1443 "common_secs, common_nsecs,\n\t\t\t"
1444 "common_pid, common_comm)\n\n");
1445
1446 fprintf(ofp, "\t\tprint \"");
1447
1448 not_first = 0;
1449 count = 0;
1450
1451 for (f = event->format.fields; f; f = f->next) {
1452 if (not_first++)
1453 fprintf(ofp, ", ");
1454 if (count && count % 3 == 0) {
1455 fprintf(ofp, "\" \\\n\t\t\"");
1456 }
1457 count++;
1458
1459 fprintf(ofp, "%s=", f->name);
1460 if (f->flags & FIELD_IS_STRING ||
1461 f->flags & FIELD_IS_FLAG ||
1462 f->flags & FIELD_IS_ARRAY ||
1463 f->flags & FIELD_IS_SYMBOLIC)
1464 fprintf(ofp, "%%s");
1465 else if (f->flags & FIELD_IS_SIGNED)
1466 fprintf(ofp, "%%d");
1467 else
1468 fprintf(ofp, "%%u");
1469 }
1470
1471 fprintf(ofp, "\" %% \\\n\t\t(");
1472
1473 not_first = 0;
1474 count = 0;
1475
1476 for (f = event->format.fields; f; f = f->next) {
1477 if (not_first++)
1478 fprintf(ofp, ", ");
1479
1480 if (++count % 5 == 0)
1481 fprintf(ofp, "\n\t\t");
1482
1483 if (f->flags & FIELD_IS_FLAG) {
1484 if ((count - 1) % 5 != 0) {
1485 fprintf(ofp, "\n\t\t");
1486 count = 4;
1487 }
1488 fprintf(ofp, "flag_str(\"");
1489 fprintf(ofp, "%s__%s\", ", event->system,
1490 event->name);
1491 fprintf(ofp, "\"%s\", %s)", f->name,
1492 f->name);
1493 } else if (f->flags & FIELD_IS_SYMBOLIC) {
1494 if ((count - 1) % 5 != 0) {
1495 fprintf(ofp, "\n\t\t");
1496 count = 4;
1497 }
1498 fprintf(ofp, "symbol_str(\"");
1499 fprintf(ofp, "%s__%s\", ", event->system,
1500 event->name);
1501 fprintf(ofp, "\"%s\", %s)", f->name,
1502 f->name);
1503 } else
1504 fprintf(ofp, "%s", f->name);
1505 }
1506
1507 fprintf(ofp, ")\n\n");
1508
1509 fprintf(ofp, "\t\tprint 'Sample: {'+"
1510 "get_dict_as_string(perf_sample_dict['sample'], ', ')+'}'\n\n");
1511
1512 fprintf(ofp, "\t\tfor node in common_callchain:");
1513 fprintf(ofp, "\n\t\t\tif 'sym' in node:");
1514 fprintf(ofp, "\n\t\t\t\tprint \"\\t[%%x] %%s\" %% (node['ip'], node['sym']['name'])");
1515 fprintf(ofp, "\n\t\t\telse:");
1516 fprintf(ofp, "\n\t\t\t\tprint \"\t[%%x]\" %% (node['ip'])\n\n");
1517 fprintf(ofp, "\t\tprint \"\\n\"\n\n");
1518
1519 }
1520
1521 fprintf(ofp, "def trace_unhandled(event_name, context, "
1522 "event_fields_dict, perf_sample_dict):\n");
1523
1524 fprintf(ofp, "\t\tprint get_dict_as_string(event_fields_dict)\n");
1525 fprintf(ofp, "\t\tprint 'Sample: {'+"
1526 "get_dict_as_string(perf_sample_dict['sample'], ', ')+'}'\n\n");
1527
1528 fprintf(ofp, "def print_header("
1529 "event_name, cpu, secs, nsecs, pid, comm):\n"
1530 "\tprint \"%%-20s %%5u %%05u.%%09u %%8u %%-20s \" %% \\\n\t"
1531 "(event_name, cpu, secs, nsecs, pid, comm),\n\n");
1532
1533 fprintf(ofp, "def get_dict_as_string(a_dict, delimiter=' '):\n"
1534 "\treturn delimiter.join"
1535 "(['%%s=%%s'%%(k,str(v))for k,v in sorted(a_dict.items())])\n");
1536
1537 fclose(ofp);
1538
1539 fprintf(stderr, "generated Python script: %s\n", fname);
1540
1541 return 0;
1542}
1543
1544struct scripting_ops python_scripting_ops = {
1545 .name = "Python",
1546 .start_script = python_start_script,
1547 .flush_script = python_flush_script,
1548 .stop_script = python_stop_script,
1549 .process_event = python_process_event,
1550 .process_stat = python_process_stat,
1551 .process_stat_interval = python_process_stat_interval,
1552 .generate_script = python_generate_script,
1553};
1/*
2 * trace-event-python. Feed trace events to an embedded Python interpreter.
3 *
4 * Copyright (C) 2010 Tom Zanussi <tzanussi@gmail.com>
5 *
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.
10 *
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.
15 *
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
19 *
20 */
21
22#include <Python.h>
23
24#include <inttypes.h>
25#include <stdio.h>
26#include <stdlib.h>
27#include <string.h>
28#include <stdbool.h>
29#include <errno.h>
30#include <linux/bitmap.h>
31#include <linux/compiler.h>
32#include <linux/time64.h>
33#ifdef HAVE_LIBTRACEEVENT
34#include <event-parse.h>
35#endif
36
37#include "../build-id.h"
38#include "../counts.h"
39#include "../debug.h"
40#include "../dso.h"
41#include "../callchain.h"
42#include "../env.h"
43#include "../evsel.h"
44#include "../event.h"
45#include "../thread.h"
46#include "../comm.h"
47#include "../machine.h"
48#include "../mem-info.h"
49#include "../db-export.h"
50#include "../thread-stack.h"
51#include "../trace-event.h"
52#include "../call-path.h"
53#include "map.h"
54#include "symbol.h"
55#include "thread_map.h"
56#include "print_binary.h"
57#include "stat.h"
58#include "mem-events.h"
59#include "util/perf_regs.h"
60
61#if PY_MAJOR_VERSION < 3
62#define _PyUnicode_FromString(arg) \
63 PyString_FromString(arg)
64#define _PyUnicode_FromStringAndSize(arg1, arg2) \
65 PyString_FromStringAndSize((arg1), (arg2))
66#define _PyBytes_FromStringAndSize(arg1, arg2) \
67 PyString_FromStringAndSize((arg1), (arg2))
68#define _PyLong_FromLong(arg) \
69 PyInt_FromLong(arg)
70#define _PyLong_AsLong(arg) \
71 PyInt_AsLong(arg)
72#define _PyCapsule_New(arg1, arg2, arg3) \
73 PyCObject_FromVoidPtr((arg1), (arg2))
74
75PyMODINIT_FUNC initperf_trace_context(void);
76#else
77#define _PyUnicode_FromString(arg) \
78 PyUnicode_FromString(arg)
79#define _PyUnicode_FromStringAndSize(arg1, arg2) \
80 PyUnicode_FromStringAndSize((arg1), (arg2))
81#define _PyBytes_FromStringAndSize(arg1, arg2) \
82 PyBytes_FromStringAndSize((arg1), (arg2))
83#define _PyLong_FromLong(arg) \
84 PyLong_FromLong(arg)
85#define _PyLong_AsLong(arg) \
86 PyLong_AsLong(arg)
87#define _PyCapsule_New(arg1, arg2, arg3) \
88 PyCapsule_New((arg1), (arg2), (arg3))
89
90PyMODINIT_FUNC PyInit_perf_trace_context(void);
91#endif
92
93#ifdef HAVE_LIBTRACEEVENT
94#define TRACE_EVENT_TYPE_MAX \
95 ((1 << (sizeof(unsigned short) * 8)) - 1)
96
97#define N_COMMON_FIELDS 7
98
99static char *cur_field_name;
100static int zero_flag_atom;
101#endif
102
103#define MAX_FIELDS 64
104
105extern struct scripting_context *scripting_context;
106
107static PyObject *main_module, *main_dict;
108
109struct tables {
110 struct db_export dbe;
111 PyObject *evsel_handler;
112 PyObject *machine_handler;
113 PyObject *thread_handler;
114 PyObject *comm_handler;
115 PyObject *comm_thread_handler;
116 PyObject *dso_handler;
117 PyObject *symbol_handler;
118 PyObject *branch_type_handler;
119 PyObject *sample_handler;
120 PyObject *call_path_handler;
121 PyObject *call_return_handler;
122 PyObject *synth_handler;
123 PyObject *context_switch_handler;
124 bool db_export_mode;
125};
126
127static struct tables tables_global;
128
129static void handler_call_die(const char *handler_name) __noreturn;
130static void handler_call_die(const char *handler_name)
131{
132 PyErr_Print();
133 Py_FatalError("problem in Python trace event handler");
134 // Py_FatalError does not return
135 // but we have to make the compiler happy
136 abort();
137}
138
139/*
140 * Insert val into the dictionary and decrement the reference counter.
141 * This is necessary for dictionaries since PyDict_SetItemString() does not
142 * steal a reference, as opposed to PyTuple_SetItem().
143 */
144static void pydict_set_item_string_decref(PyObject *dict, const char *key, PyObject *val)
145{
146 PyDict_SetItemString(dict, key, val);
147 Py_DECREF(val);
148}
149
150static PyObject *get_handler(const char *handler_name)
151{
152 PyObject *handler;
153
154 handler = PyDict_GetItemString(main_dict, handler_name);
155 if (handler && !PyCallable_Check(handler))
156 return NULL;
157 return handler;
158}
159
160static void call_object(PyObject *handler, PyObject *args, const char *die_msg)
161{
162 PyObject *retval;
163
164 retval = PyObject_CallObject(handler, args);
165 if (retval == NULL)
166 handler_call_die(die_msg);
167 Py_DECREF(retval);
168}
169
170static void try_call_object(const char *handler_name, PyObject *args)
171{
172 PyObject *handler;
173
174 handler = get_handler(handler_name);
175 if (handler)
176 call_object(handler, args, handler_name);
177}
178
179#ifdef HAVE_LIBTRACEEVENT
180static int get_argument_count(PyObject *handler)
181{
182 int arg_count = 0;
183
184 /*
185 * The attribute for the code object is func_code in Python 2,
186 * whereas it is __code__ in Python 3.0+.
187 */
188 PyObject *code_obj = PyObject_GetAttrString(handler,
189 "func_code");
190 if (PyErr_Occurred()) {
191 PyErr_Clear();
192 code_obj = PyObject_GetAttrString(handler,
193 "__code__");
194 }
195 PyErr_Clear();
196 if (code_obj) {
197 PyObject *arg_count_obj = PyObject_GetAttrString(code_obj,
198 "co_argcount");
199 if (arg_count_obj) {
200 arg_count = (int) _PyLong_AsLong(arg_count_obj);
201 Py_DECREF(arg_count_obj);
202 }
203 Py_DECREF(code_obj);
204 }
205 return arg_count;
206}
207
208static void define_value(enum tep_print_arg_type field_type,
209 const char *ev_name,
210 const char *field_name,
211 const char *field_value,
212 const char *field_str)
213{
214 const char *handler_name = "define_flag_value";
215 PyObject *t;
216 unsigned long long value;
217 unsigned n = 0;
218
219 if (field_type == TEP_PRINT_SYMBOL)
220 handler_name = "define_symbolic_value";
221
222 t = PyTuple_New(4);
223 if (!t)
224 Py_FatalError("couldn't create Python tuple");
225
226 value = eval_flag(field_value);
227
228 PyTuple_SetItem(t, n++, _PyUnicode_FromString(ev_name));
229 PyTuple_SetItem(t, n++, _PyUnicode_FromString(field_name));
230 PyTuple_SetItem(t, n++, _PyLong_FromLong(value));
231 PyTuple_SetItem(t, n++, _PyUnicode_FromString(field_str));
232
233 try_call_object(handler_name, t);
234
235 Py_DECREF(t);
236}
237
238static void define_values(enum tep_print_arg_type field_type,
239 struct tep_print_flag_sym *field,
240 const char *ev_name,
241 const char *field_name)
242{
243 define_value(field_type, ev_name, field_name, field->value,
244 field->str);
245
246 if (field->next)
247 define_values(field_type, field->next, ev_name, field_name);
248}
249
250static void define_field(enum tep_print_arg_type field_type,
251 const char *ev_name,
252 const char *field_name,
253 const char *delim)
254{
255 const char *handler_name = "define_flag_field";
256 PyObject *t;
257 unsigned n = 0;
258
259 if (field_type == TEP_PRINT_SYMBOL)
260 handler_name = "define_symbolic_field";
261
262 if (field_type == TEP_PRINT_FLAGS)
263 t = PyTuple_New(3);
264 else
265 t = PyTuple_New(2);
266 if (!t)
267 Py_FatalError("couldn't create Python tuple");
268
269 PyTuple_SetItem(t, n++, _PyUnicode_FromString(ev_name));
270 PyTuple_SetItem(t, n++, _PyUnicode_FromString(field_name));
271 if (field_type == TEP_PRINT_FLAGS)
272 PyTuple_SetItem(t, n++, _PyUnicode_FromString(delim));
273
274 try_call_object(handler_name, t);
275
276 Py_DECREF(t);
277}
278
279static void define_event_symbols(struct tep_event *event,
280 const char *ev_name,
281 struct tep_print_arg *args)
282{
283 if (args == NULL)
284 return;
285
286 switch (args->type) {
287 case TEP_PRINT_NULL:
288 break;
289 case TEP_PRINT_ATOM:
290 define_value(TEP_PRINT_FLAGS, ev_name, cur_field_name, "0",
291 args->atom.atom);
292 zero_flag_atom = 0;
293 break;
294 case TEP_PRINT_FIELD:
295 free(cur_field_name);
296 cur_field_name = strdup(args->field.name);
297 break;
298 case TEP_PRINT_FLAGS:
299 define_event_symbols(event, ev_name, args->flags.field);
300 define_field(TEP_PRINT_FLAGS, ev_name, cur_field_name,
301 args->flags.delim);
302 define_values(TEP_PRINT_FLAGS, args->flags.flags, ev_name,
303 cur_field_name);
304 break;
305 case TEP_PRINT_SYMBOL:
306 define_event_symbols(event, ev_name, args->symbol.field);
307 define_field(TEP_PRINT_SYMBOL, ev_name, cur_field_name, NULL);
308 define_values(TEP_PRINT_SYMBOL, args->symbol.symbols, ev_name,
309 cur_field_name);
310 break;
311 case TEP_PRINT_HEX:
312 case TEP_PRINT_HEX_STR:
313 define_event_symbols(event, ev_name, args->hex.field);
314 define_event_symbols(event, ev_name, args->hex.size);
315 break;
316 case TEP_PRINT_INT_ARRAY:
317 define_event_symbols(event, ev_name, args->int_array.field);
318 define_event_symbols(event, ev_name, args->int_array.count);
319 define_event_symbols(event, ev_name, args->int_array.el_size);
320 break;
321 case TEP_PRINT_STRING:
322 break;
323 case TEP_PRINT_TYPE:
324 define_event_symbols(event, ev_name, args->typecast.item);
325 break;
326 case TEP_PRINT_OP:
327 if (strcmp(args->op.op, ":") == 0)
328 zero_flag_atom = 1;
329 define_event_symbols(event, ev_name, args->op.left);
330 define_event_symbols(event, ev_name, args->op.right);
331 break;
332 default:
333 /* gcc warns for these? */
334 case TEP_PRINT_BSTRING:
335 case TEP_PRINT_DYNAMIC_ARRAY:
336 case TEP_PRINT_DYNAMIC_ARRAY_LEN:
337 case TEP_PRINT_FUNC:
338 case TEP_PRINT_BITMASK:
339 /* we should warn... */
340 return;
341 }
342
343 if (args->next)
344 define_event_symbols(event, ev_name, args->next);
345}
346
347static PyObject *get_field_numeric_entry(struct tep_event *event,
348 struct tep_format_field *field, void *data)
349{
350 bool is_array = field->flags & TEP_FIELD_IS_ARRAY;
351 PyObject *obj = NULL, *list = NULL;
352 unsigned long long val;
353 unsigned int item_size, n_items, i;
354
355 if (is_array) {
356 list = PyList_New(field->arraylen);
357 if (!list)
358 Py_FatalError("couldn't create Python list");
359 item_size = field->size / field->arraylen;
360 n_items = field->arraylen;
361 } else {
362 item_size = field->size;
363 n_items = 1;
364 }
365
366 for (i = 0; i < n_items; i++) {
367
368 val = read_size(event, data + field->offset + i * item_size,
369 item_size);
370 if (field->flags & TEP_FIELD_IS_SIGNED) {
371 if ((long long)val >= LONG_MIN &&
372 (long long)val <= LONG_MAX)
373 obj = _PyLong_FromLong(val);
374 else
375 obj = PyLong_FromLongLong(val);
376 } else {
377 if (val <= LONG_MAX)
378 obj = _PyLong_FromLong(val);
379 else
380 obj = PyLong_FromUnsignedLongLong(val);
381 }
382 if (is_array)
383 PyList_SET_ITEM(list, i, obj);
384 }
385 if (is_array)
386 obj = list;
387 return obj;
388}
389#endif
390
391static const char *get_dsoname(struct map *map)
392{
393 const char *dsoname = "[unknown]";
394 struct dso *dso = map ? map__dso(map) : NULL;
395
396 if (dso) {
397 if (symbol_conf.show_kernel_path && dso__long_name(dso))
398 dsoname = dso__long_name(dso);
399 else
400 dsoname = dso__name(dso);
401 }
402
403 return dsoname;
404}
405
406static unsigned long get_offset(struct symbol *sym, struct addr_location *al)
407{
408 unsigned long offset;
409
410 if (al->addr < sym->end)
411 offset = al->addr - sym->start;
412 else
413 offset = al->addr - map__start(al->map) - sym->start;
414
415 return offset;
416}
417
418static PyObject *python_process_callchain(struct perf_sample *sample,
419 struct evsel *evsel,
420 struct addr_location *al)
421{
422 PyObject *pylist;
423 struct callchain_cursor *cursor;
424
425 pylist = PyList_New(0);
426 if (!pylist)
427 Py_FatalError("couldn't create Python list");
428
429 if (!symbol_conf.use_callchain || !sample->callchain)
430 goto exit;
431
432 cursor = get_tls_callchain_cursor();
433 if (thread__resolve_callchain(al->thread, cursor, evsel,
434 sample, NULL, NULL,
435 scripting_max_stack) != 0) {
436 pr_err("Failed to resolve callchain. Skipping\n");
437 goto exit;
438 }
439 callchain_cursor_commit(cursor);
440
441
442 while (1) {
443 PyObject *pyelem;
444 struct callchain_cursor_node *node;
445 node = callchain_cursor_current(cursor);
446 if (!node)
447 break;
448
449 pyelem = PyDict_New();
450 if (!pyelem)
451 Py_FatalError("couldn't create Python dictionary");
452
453
454 pydict_set_item_string_decref(pyelem, "ip",
455 PyLong_FromUnsignedLongLong(node->ip));
456
457 if (node->ms.sym) {
458 PyObject *pysym = PyDict_New();
459 if (!pysym)
460 Py_FatalError("couldn't create Python dictionary");
461 pydict_set_item_string_decref(pysym, "start",
462 PyLong_FromUnsignedLongLong(node->ms.sym->start));
463 pydict_set_item_string_decref(pysym, "end",
464 PyLong_FromUnsignedLongLong(node->ms.sym->end));
465 pydict_set_item_string_decref(pysym, "binding",
466 _PyLong_FromLong(node->ms.sym->binding));
467 pydict_set_item_string_decref(pysym, "name",
468 _PyUnicode_FromStringAndSize(node->ms.sym->name,
469 node->ms.sym->namelen));
470 pydict_set_item_string_decref(pyelem, "sym", pysym);
471
472 if (node->ms.map) {
473 struct map *map = node->ms.map;
474 struct addr_location node_al;
475 unsigned long offset;
476
477 addr_location__init(&node_al);
478 node_al.addr = map__map_ip(map, node->ip);
479 node_al.map = map__get(map);
480 offset = get_offset(node->ms.sym, &node_al);
481 addr_location__exit(&node_al);
482
483 pydict_set_item_string_decref(
484 pyelem, "sym_off",
485 PyLong_FromUnsignedLongLong(offset));
486 }
487 if (node->srcline && strcmp(":0", node->srcline)) {
488 pydict_set_item_string_decref(
489 pyelem, "sym_srcline",
490 _PyUnicode_FromString(node->srcline));
491 }
492 }
493
494 if (node->ms.map) {
495 const char *dsoname = get_dsoname(node->ms.map);
496
497 pydict_set_item_string_decref(pyelem, "dso",
498 _PyUnicode_FromString(dsoname));
499 }
500
501 callchain_cursor_advance(cursor);
502 PyList_Append(pylist, pyelem);
503 Py_DECREF(pyelem);
504 }
505
506exit:
507 return pylist;
508}
509
510static PyObject *python_process_brstack(struct perf_sample *sample,
511 struct thread *thread)
512{
513 struct branch_stack *br = sample->branch_stack;
514 struct branch_entry *entries = perf_sample__branch_entries(sample);
515 PyObject *pylist;
516 u64 i;
517
518 pylist = PyList_New(0);
519 if (!pylist)
520 Py_FatalError("couldn't create Python list");
521
522 if (!(br && br->nr))
523 goto exit;
524
525 for (i = 0; i < br->nr; i++) {
526 PyObject *pyelem;
527 struct addr_location al;
528 const char *dsoname;
529
530 pyelem = PyDict_New();
531 if (!pyelem)
532 Py_FatalError("couldn't create Python dictionary");
533
534 pydict_set_item_string_decref(pyelem, "from",
535 PyLong_FromUnsignedLongLong(entries[i].from));
536 pydict_set_item_string_decref(pyelem, "to",
537 PyLong_FromUnsignedLongLong(entries[i].to));
538 pydict_set_item_string_decref(pyelem, "mispred",
539 PyBool_FromLong(entries[i].flags.mispred));
540 pydict_set_item_string_decref(pyelem, "predicted",
541 PyBool_FromLong(entries[i].flags.predicted));
542 pydict_set_item_string_decref(pyelem, "in_tx",
543 PyBool_FromLong(entries[i].flags.in_tx));
544 pydict_set_item_string_decref(pyelem, "abort",
545 PyBool_FromLong(entries[i].flags.abort));
546 pydict_set_item_string_decref(pyelem, "cycles",
547 PyLong_FromUnsignedLongLong(entries[i].flags.cycles));
548
549 addr_location__init(&al);
550 thread__find_map_fb(thread, sample->cpumode,
551 entries[i].from, &al);
552 dsoname = get_dsoname(al.map);
553 pydict_set_item_string_decref(pyelem, "from_dsoname",
554 _PyUnicode_FromString(dsoname));
555
556 thread__find_map_fb(thread, sample->cpumode,
557 entries[i].to, &al);
558 dsoname = get_dsoname(al.map);
559 pydict_set_item_string_decref(pyelem, "to_dsoname",
560 _PyUnicode_FromString(dsoname));
561
562 addr_location__exit(&al);
563 PyList_Append(pylist, pyelem);
564 Py_DECREF(pyelem);
565 }
566
567exit:
568 return pylist;
569}
570
571static int get_symoff(struct symbol *sym, struct addr_location *al,
572 bool print_off, char *bf, int size)
573{
574 unsigned long offset;
575
576 if (!sym || !sym->name[0])
577 return scnprintf(bf, size, "%s", "[unknown]");
578
579 if (!print_off)
580 return scnprintf(bf, size, "%s", sym->name);
581
582 offset = get_offset(sym, al);
583
584 return scnprintf(bf, size, "%s+0x%x", sym->name, offset);
585}
586
587static int get_br_mspred(struct branch_flags *flags, char *bf, int size)
588{
589 if (!flags->mispred && !flags->predicted)
590 return scnprintf(bf, size, "%s", "-");
591
592 if (flags->mispred)
593 return scnprintf(bf, size, "%s", "M");
594
595 return scnprintf(bf, size, "%s", "P");
596}
597
598static PyObject *python_process_brstacksym(struct perf_sample *sample,
599 struct thread *thread)
600{
601 struct branch_stack *br = sample->branch_stack;
602 struct branch_entry *entries = perf_sample__branch_entries(sample);
603 PyObject *pylist;
604 u64 i;
605 char bf[512];
606
607 pylist = PyList_New(0);
608 if (!pylist)
609 Py_FatalError("couldn't create Python list");
610
611 if (!(br && br->nr))
612 goto exit;
613
614 for (i = 0; i < br->nr; i++) {
615 PyObject *pyelem;
616 struct addr_location al;
617
618 addr_location__init(&al);
619 pyelem = PyDict_New();
620 if (!pyelem)
621 Py_FatalError("couldn't create Python dictionary");
622
623 thread__find_symbol_fb(thread, sample->cpumode,
624 entries[i].from, &al);
625 get_symoff(al.sym, &al, true, bf, sizeof(bf));
626 pydict_set_item_string_decref(pyelem, "from",
627 _PyUnicode_FromString(bf));
628
629 thread__find_symbol_fb(thread, sample->cpumode,
630 entries[i].to, &al);
631 get_symoff(al.sym, &al, true, bf, sizeof(bf));
632 pydict_set_item_string_decref(pyelem, "to",
633 _PyUnicode_FromString(bf));
634
635 get_br_mspred(&entries[i].flags, bf, sizeof(bf));
636 pydict_set_item_string_decref(pyelem, "pred",
637 _PyUnicode_FromString(bf));
638
639 if (entries[i].flags.in_tx) {
640 pydict_set_item_string_decref(pyelem, "in_tx",
641 _PyUnicode_FromString("X"));
642 } else {
643 pydict_set_item_string_decref(pyelem, "in_tx",
644 _PyUnicode_FromString("-"));
645 }
646
647 if (entries[i].flags.abort) {
648 pydict_set_item_string_decref(pyelem, "abort",
649 _PyUnicode_FromString("A"));
650 } else {
651 pydict_set_item_string_decref(pyelem, "abort",
652 _PyUnicode_FromString("-"));
653 }
654
655 PyList_Append(pylist, pyelem);
656 Py_DECREF(pyelem);
657 addr_location__exit(&al);
658 }
659
660exit:
661 return pylist;
662}
663
664static PyObject *get_sample_value_as_tuple(struct sample_read_value *value,
665 u64 read_format)
666{
667 PyObject *t;
668
669 t = PyTuple_New(3);
670 if (!t)
671 Py_FatalError("couldn't create Python tuple");
672 PyTuple_SetItem(t, 0, PyLong_FromUnsignedLongLong(value->id));
673 PyTuple_SetItem(t, 1, PyLong_FromUnsignedLongLong(value->value));
674 if (read_format & PERF_FORMAT_LOST)
675 PyTuple_SetItem(t, 2, PyLong_FromUnsignedLongLong(value->lost));
676
677 return t;
678}
679
680static void set_sample_read_in_dict(PyObject *dict_sample,
681 struct perf_sample *sample,
682 struct evsel *evsel)
683{
684 u64 read_format = evsel->core.attr.read_format;
685 PyObject *values;
686 unsigned int i;
687
688 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
689 pydict_set_item_string_decref(dict_sample, "time_enabled",
690 PyLong_FromUnsignedLongLong(sample->read.time_enabled));
691 }
692
693 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
694 pydict_set_item_string_decref(dict_sample, "time_running",
695 PyLong_FromUnsignedLongLong(sample->read.time_running));
696 }
697
698 if (read_format & PERF_FORMAT_GROUP)
699 values = PyList_New(sample->read.group.nr);
700 else
701 values = PyList_New(1);
702
703 if (!values)
704 Py_FatalError("couldn't create Python list");
705
706 if (read_format & PERF_FORMAT_GROUP) {
707 struct sample_read_value *v = sample->read.group.values;
708
709 i = 0;
710 sample_read_group__for_each(v, sample->read.group.nr, read_format) {
711 PyObject *t = get_sample_value_as_tuple(v, read_format);
712 PyList_SET_ITEM(values, i, t);
713 i++;
714 }
715 } else {
716 PyObject *t = get_sample_value_as_tuple(&sample->read.one,
717 read_format);
718 PyList_SET_ITEM(values, 0, t);
719 }
720 pydict_set_item_string_decref(dict_sample, "values", values);
721}
722
723static void set_sample_datasrc_in_dict(PyObject *dict,
724 struct perf_sample *sample)
725{
726 struct mem_info *mi = mem_info__new();
727 char decode[100];
728
729 if (!mi)
730 Py_FatalError("couldn't create mem-info");
731
732 pydict_set_item_string_decref(dict, "datasrc",
733 PyLong_FromUnsignedLongLong(sample->data_src));
734
735 mem_info__data_src(mi)->val = sample->data_src;
736 perf_script__meminfo_scnprintf(decode, 100, mi);
737 mem_info__put(mi);
738
739 pydict_set_item_string_decref(dict, "datasrc_decode",
740 _PyUnicode_FromString(decode));
741}
742
743static void regs_map(struct regs_dump *regs, uint64_t mask, const char *arch, char *bf, int size)
744{
745 unsigned int i = 0, r;
746 int printed = 0;
747
748 bf[0] = 0;
749
750 if (size <= 0)
751 return;
752
753 if (!regs || !regs->regs)
754 return;
755
756 for_each_set_bit(r, (unsigned long *) &mask, sizeof(mask) * 8) {
757 u64 val = regs->regs[i++];
758
759 printed += scnprintf(bf + printed, size - printed,
760 "%5s:0x%" PRIx64 " ",
761 perf_reg_name(r, arch), val);
762 }
763}
764
765#define MAX_REG_SIZE 128
766
767static int set_regs_in_dict(PyObject *dict,
768 struct perf_sample *sample,
769 struct evsel *evsel)
770{
771 struct perf_event_attr *attr = &evsel->core.attr;
772 const char *arch = perf_env__arch(evsel__env(evsel));
773
774 int size = (__sw_hweight64(attr->sample_regs_intr) * MAX_REG_SIZE) + 1;
775 char *bf = malloc(size);
776 if (!bf)
777 return -1;
778
779 regs_map(&sample->intr_regs, attr->sample_regs_intr, arch, bf, size);
780
781 pydict_set_item_string_decref(dict, "iregs",
782 _PyUnicode_FromString(bf));
783
784 regs_map(&sample->user_regs, attr->sample_regs_user, arch, bf, size);
785
786 pydict_set_item_string_decref(dict, "uregs",
787 _PyUnicode_FromString(bf));
788 free(bf);
789
790 return 0;
791}
792
793static void set_sym_in_dict(PyObject *dict, struct addr_location *al,
794 const char *dso_field, const char *dso_bid_field,
795 const char *dso_map_start, const char *dso_map_end,
796 const char *sym_field, const char *symoff_field,
797 const char *map_pgoff)
798{
799 char sbuild_id[SBUILD_ID_SIZE];
800
801 if (al->map) {
802 struct dso *dso = map__dso(al->map);
803
804 pydict_set_item_string_decref(dict, dso_field,
805 _PyUnicode_FromString(dso__name(dso)));
806 build_id__sprintf(dso__bid(dso), sbuild_id);
807 pydict_set_item_string_decref(dict, dso_bid_field,
808 _PyUnicode_FromString(sbuild_id));
809 pydict_set_item_string_decref(dict, dso_map_start,
810 PyLong_FromUnsignedLong(map__start(al->map)));
811 pydict_set_item_string_decref(dict, dso_map_end,
812 PyLong_FromUnsignedLong(map__end(al->map)));
813 pydict_set_item_string_decref(dict, map_pgoff,
814 PyLong_FromUnsignedLongLong(map__pgoff(al->map)));
815 }
816 if (al->sym) {
817 pydict_set_item_string_decref(dict, sym_field,
818 _PyUnicode_FromString(al->sym->name));
819 pydict_set_item_string_decref(dict, symoff_field,
820 PyLong_FromUnsignedLong(get_offset(al->sym, al)));
821 }
822}
823
824static void set_sample_flags(PyObject *dict, u32 flags)
825{
826 const char *ch = PERF_IP_FLAG_CHARS;
827 char *p, str[33];
828
829 for (p = str; *ch; ch++, flags >>= 1) {
830 if (flags & 1)
831 *p++ = *ch;
832 }
833 *p = 0;
834 pydict_set_item_string_decref(dict, "flags", _PyUnicode_FromString(str));
835}
836
837static void python_process_sample_flags(struct perf_sample *sample, PyObject *dict_sample)
838{
839 char flags_disp[SAMPLE_FLAGS_BUF_SIZE];
840
841 set_sample_flags(dict_sample, sample->flags);
842 perf_sample__sprintf_flags(sample->flags, flags_disp, sizeof(flags_disp));
843 pydict_set_item_string_decref(dict_sample, "flags_disp",
844 _PyUnicode_FromString(flags_disp));
845}
846
847static PyObject *get_perf_sample_dict(struct perf_sample *sample,
848 struct evsel *evsel,
849 struct addr_location *al,
850 struct addr_location *addr_al,
851 PyObject *callchain)
852{
853 PyObject *dict, *dict_sample, *brstack, *brstacksym;
854
855 dict = PyDict_New();
856 if (!dict)
857 Py_FatalError("couldn't create Python dictionary");
858
859 dict_sample = PyDict_New();
860 if (!dict_sample)
861 Py_FatalError("couldn't create Python dictionary");
862
863 pydict_set_item_string_decref(dict, "ev_name", _PyUnicode_FromString(evsel__name(evsel)));
864 pydict_set_item_string_decref(dict, "attr", _PyBytes_FromStringAndSize((const char *)&evsel->core.attr, sizeof(evsel->core.attr)));
865
866 pydict_set_item_string_decref(dict_sample, "id",
867 PyLong_FromUnsignedLongLong(sample->id));
868 pydict_set_item_string_decref(dict_sample, "stream_id",
869 PyLong_FromUnsignedLongLong(sample->stream_id));
870 pydict_set_item_string_decref(dict_sample, "pid",
871 _PyLong_FromLong(sample->pid));
872 pydict_set_item_string_decref(dict_sample, "tid",
873 _PyLong_FromLong(sample->tid));
874 pydict_set_item_string_decref(dict_sample, "cpu",
875 _PyLong_FromLong(sample->cpu));
876 pydict_set_item_string_decref(dict_sample, "ip",
877 PyLong_FromUnsignedLongLong(sample->ip));
878 pydict_set_item_string_decref(dict_sample, "time",
879 PyLong_FromUnsignedLongLong(sample->time));
880 pydict_set_item_string_decref(dict_sample, "period",
881 PyLong_FromUnsignedLongLong(sample->period));
882 pydict_set_item_string_decref(dict_sample, "phys_addr",
883 PyLong_FromUnsignedLongLong(sample->phys_addr));
884 pydict_set_item_string_decref(dict_sample, "addr",
885 PyLong_FromUnsignedLongLong(sample->addr));
886 set_sample_read_in_dict(dict_sample, sample, evsel);
887 pydict_set_item_string_decref(dict_sample, "weight",
888 PyLong_FromUnsignedLongLong(sample->weight));
889 pydict_set_item_string_decref(dict_sample, "ins_lat",
890 PyLong_FromUnsignedLong(sample->ins_lat));
891 pydict_set_item_string_decref(dict_sample, "transaction",
892 PyLong_FromUnsignedLongLong(sample->transaction));
893 set_sample_datasrc_in_dict(dict_sample, sample);
894 pydict_set_item_string_decref(dict, "sample", dict_sample);
895
896 pydict_set_item_string_decref(dict, "raw_buf", _PyBytes_FromStringAndSize(
897 (const char *)sample->raw_data, sample->raw_size));
898 pydict_set_item_string_decref(dict, "comm",
899 _PyUnicode_FromString(thread__comm_str(al->thread)));
900 set_sym_in_dict(dict, al, "dso", "dso_bid", "dso_map_start", "dso_map_end",
901 "symbol", "symoff", "map_pgoff");
902
903 pydict_set_item_string_decref(dict, "callchain", callchain);
904
905 brstack = python_process_brstack(sample, al->thread);
906 pydict_set_item_string_decref(dict, "brstack", brstack);
907
908 brstacksym = python_process_brstacksym(sample, al->thread);
909 pydict_set_item_string_decref(dict, "brstacksym", brstacksym);
910
911 if (sample->machine_pid) {
912 pydict_set_item_string_decref(dict_sample, "machine_pid",
913 _PyLong_FromLong(sample->machine_pid));
914 pydict_set_item_string_decref(dict_sample, "vcpu",
915 _PyLong_FromLong(sample->vcpu));
916 }
917
918 pydict_set_item_string_decref(dict_sample, "cpumode",
919 _PyLong_FromLong((unsigned long)sample->cpumode));
920
921 if (addr_al) {
922 pydict_set_item_string_decref(dict_sample, "addr_correlates_sym",
923 PyBool_FromLong(1));
924 set_sym_in_dict(dict_sample, addr_al, "addr_dso", "addr_dso_bid",
925 "addr_dso_map_start", "addr_dso_map_end",
926 "addr_symbol", "addr_symoff", "addr_map_pgoff");
927 }
928
929 if (sample->flags)
930 python_process_sample_flags(sample, dict_sample);
931
932 /* Instructions per cycle (IPC) */
933 if (sample->insn_cnt && sample->cyc_cnt) {
934 pydict_set_item_string_decref(dict_sample, "insn_cnt",
935 PyLong_FromUnsignedLongLong(sample->insn_cnt));
936 pydict_set_item_string_decref(dict_sample, "cyc_cnt",
937 PyLong_FromUnsignedLongLong(sample->cyc_cnt));
938 }
939
940 if (set_regs_in_dict(dict, sample, evsel))
941 Py_FatalError("Failed to setting regs in dict");
942
943 return dict;
944}
945
946#ifdef HAVE_LIBTRACEEVENT
947static void python_process_tracepoint(struct perf_sample *sample,
948 struct evsel *evsel,
949 struct addr_location *al,
950 struct addr_location *addr_al)
951{
952 struct tep_event *event = evsel->tp_format;
953 PyObject *handler, *context, *t, *obj = NULL, *callchain;
954 PyObject *dict = NULL, *all_entries_dict = NULL;
955 static char handler_name[256];
956 struct tep_format_field *field;
957 unsigned long s, ns;
958 unsigned n = 0;
959 int pid;
960 int cpu = sample->cpu;
961 void *data = sample->raw_data;
962 unsigned long long nsecs = sample->time;
963 const char *comm = thread__comm_str(al->thread);
964 const char *default_handler_name = "trace_unhandled";
965 DECLARE_BITMAP(events_defined, TRACE_EVENT_TYPE_MAX);
966
967 bitmap_zero(events_defined, TRACE_EVENT_TYPE_MAX);
968
969 if (!event) {
970 snprintf(handler_name, sizeof(handler_name),
971 "ug! no event found for type %" PRIu64, (u64)evsel->core.attr.config);
972 Py_FatalError(handler_name);
973 }
974
975 pid = raw_field_value(event, "common_pid", data);
976
977 sprintf(handler_name, "%s__%s", event->system, event->name);
978
979 if (!__test_and_set_bit(event->id, events_defined))
980 define_event_symbols(event, handler_name, event->print_fmt.args);
981
982 handler = get_handler(handler_name);
983 if (!handler) {
984 handler = get_handler(default_handler_name);
985 if (!handler)
986 return;
987 dict = PyDict_New();
988 if (!dict)
989 Py_FatalError("couldn't create Python dict");
990 }
991
992 t = PyTuple_New(MAX_FIELDS);
993 if (!t)
994 Py_FatalError("couldn't create Python tuple");
995
996
997 s = nsecs / NSEC_PER_SEC;
998 ns = nsecs - s * NSEC_PER_SEC;
999
1000 context = _PyCapsule_New(scripting_context, NULL, NULL);
1001
1002 PyTuple_SetItem(t, n++, _PyUnicode_FromString(handler_name));
1003 PyTuple_SetItem(t, n++, context);
1004
1005 /* ip unwinding */
1006 callchain = python_process_callchain(sample, evsel, al);
1007 /* Need an additional reference for the perf_sample dict */
1008 Py_INCREF(callchain);
1009
1010 if (!dict) {
1011 PyTuple_SetItem(t, n++, _PyLong_FromLong(cpu));
1012 PyTuple_SetItem(t, n++, _PyLong_FromLong(s));
1013 PyTuple_SetItem(t, n++, _PyLong_FromLong(ns));
1014 PyTuple_SetItem(t, n++, _PyLong_FromLong(pid));
1015 PyTuple_SetItem(t, n++, _PyUnicode_FromString(comm));
1016 PyTuple_SetItem(t, n++, callchain);
1017 } else {
1018 pydict_set_item_string_decref(dict, "common_cpu", _PyLong_FromLong(cpu));
1019 pydict_set_item_string_decref(dict, "common_s", _PyLong_FromLong(s));
1020 pydict_set_item_string_decref(dict, "common_ns", _PyLong_FromLong(ns));
1021 pydict_set_item_string_decref(dict, "common_pid", _PyLong_FromLong(pid));
1022 pydict_set_item_string_decref(dict, "common_comm", _PyUnicode_FromString(comm));
1023 pydict_set_item_string_decref(dict, "common_callchain", callchain);
1024 }
1025 for (field = event->format.fields; field; field = field->next) {
1026 unsigned int offset, len;
1027 unsigned long long val;
1028
1029 if (field->flags & TEP_FIELD_IS_ARRAY) {
1030 offset = field->offset;
1031 len = field->size;
1032 if (field->flags & TEP_FIELD_IS_DYNAMIC) {
1033 val = tep_read_number(scripting_context->pevent,
1034 data + offset, len);
1035 offset = val;
1036 len = offset >> 16;
1037 offset &= 0xffff;
1038 if (tep_field_is_relative(field->flags))
1039 offset += field->offset + field->size;
1040 }
1041 if (field->flags & TEP_FIELD_IS_STRING &&
1042 is_printable_array(data + offset, len)) {
1043 obj = _PyUnicode_FromString((char *) data + offset);
1044 } else {
1045 obj = PyByteArray_FromStringAndSize((const char *) data + offset, len);
1046 field->flags &= ~TEP_FIELD_IS_STRING;
1047 }
1048 } else { /* FIELD_IS_NUMERIC */
1049 obj = get_field_numeric_entry(event, field, data);
1050 }
1051 if (!dict)
1052 PyTuple_SetItem(t, n++, obj);
1053 else
1054 pydict_set_item_string_decref(dict, field->name, obj);
1055
1056 }
1057
1058 if (dict)
1059 PyTuple_SetItem(t, n++, dict);
1060
1061 if (get_argument_count(handler) == (int) n + 1) {
1062 all_entries_dict = get_perf_sample_dict(sample, evsel, al, addr_al,
1063 callchain);
1064 PyTuple_SetItem(t, n++, all_entries_dict);
1065 } else {
1066 Py_DECREF(callchain);
1067 }
1068
1069 if (_PyTuple_Resize(&t, n) == -1)
1070 Py_FatalError("error resizing Python tuple");
1071
1072 if (!dict)
1073 call_object(handler, t, handler_name);
1074 else
1075 call_object(handler, t, default_handler_name);
1076
1077 Py_DECREF(t);
1078}
1079#else
1080static void python_process_tracepoint(struct perf_sample *sample __maybe_unused,
1081 struct evsel *evsel __maybe_unused,
1082 struct addr_location *al __maybe_unused,
1083 struct addr_location *addr_al __maybe_unused)
1084{
1085 fprintf(stderr, "Tracepoint events are not supported because "
1086 "perf is not linked with libtraceevent.\n");
1087}
1088#endif
1089
1090static PyObject *tuple_new(unsigned int sz)
1091{
1092 PyObject *t;
1093
1094 t = PyTuple_New(sz);
1095 if (!t)
1096 Py_FatalError("couldn't create Python tuple");
1097 return t;
1098}
1099
1100static int tuple_set_s64(PyObject *t, unsigned int pos, s64 val)
1101{
1102#if BITS_PER_LONG == 64
1103 return PyTuple_SetItem(t, pos, _PyLong_FromLong(val));
1104#endif
1105#if BITS_PER_LONG == 32
1106 return PyTuple_SetItem(t, pos, PyLong_FromLongLong(val));
1107#endif
1108}
1109
1110/*
1111 * Databases support only signed 64-bit numbers, so even though we are
1112 * exporting a u64, it must be as s64.
1113 */
1114#define tuple_set_d64 tuple_set_s64
1115
1116static int tuple_set_u64(PyObject *t, unsigned int pos, u64 val)
1117{
1118#if BITS_PER_LONG == 64
1119 return PyTuple_SetItem(t, pos, PyLong_FromUnsignedLong(val));
1120#endif
1121#if BITS_PER_LONG == 32
1122 return PyTuple_SetItem(t, pos, PyLong_FromUnsignedLongLong(val));
1123#endif
1124}
1125
1126static int tuple_set_u32(PyObject *t, unsigned int pos, u32 val)
1127{
1128 return PyTuple_SetItem(t, pos, PyLong_FromUnsignedLong(val));
1129}
1130
1131static int tuple_set_s32(PyObject *t, unsigned int pos, s32 val)
1132{
1133 return PyTuple_SetItem(t, pos, _PyLong_FromLong(val));
1134}
1135
1136static int tuple_set_bool(PyObject *t, unsigned int pos, bool val)
1137{
1138 return PyTuple_SetItem(t, pos, PyBool_FromLong(val));
1139}
1140
1141static int tuple_set_string(PyObject *t, unsigned int pos, const char *s)
1142{
1143 return PyTuple_SetItem(t, pos, _PyUnicode_FromString(s));
1144}
1145
1146static int tuple_set_bytes(PyObject *t, unsigned int pos, void *bytes,
1147 unsigned int sz)
1148{
1149 return PyTuple_SetItem(t, pos, _PyBytes_FromStringAndSize(bytes, sz));
1150}
1151
1152static int python_export_evsel(struct db_export *dbe, struct evsel *evsel)
1153{
1154 struct tables *tables = container_of(dbe, struct tables, dbe);
1155 PyObject *t;
1156
1157 t = tuple_new(2);
1158
1159 tuple_set_d64(t, 0, evsel->db_id);
1160 tuple_set_string(t, 1, evsel__name(evsel));
1161
1162 call_object(tables->evsel_handler, t, "evsel_table");
1163
1164 Py_DECREF(t);
1165
1166 return 0;
1167}
1168
1169static int python_export_machine(struct db_export *dbe,
1170 struct machine *machine)
1171{
1172 struct tables *tables = container_of(dbe, struct tables, dbe);
1173 PyObject *t;
1174
1175 t = tuple_new(3);
1176
1177 tuple_set_d64(t, 0, machine->db_id);
1178 tuple_set_s32(t, 1, machine->pid);
1179 tuple_set_string(t, 2, machine->root_dir ? machine->root_dir : "");
1180
1181 call_object(tables->machine_handler, t, "machine_table");
1182
1183 Py_DECREF(t);
1184
1185 return 0;
1186}
1187
1188static int python_export_thread(struct db_export *dbe, struct thread *thread,
1189 u64 main_thread_db_id, struct machine *machine)
1190{
1191 struct tables *tables = container_of(dbe, struct tables, dbe);
1192 PyObject *t;
1193
1194 t = tuple_new(5);
1195
1196 tuple_set_d64(t, 0, thread__db_id(thread));
1197 tuple_set_d64(t, 1, machine->db_id);
1198 tuple_set_d64(t, 2, main_thread_db_id);
1199 tuple_set_s32(t, 3, thread__pid(thread));
1200 tuple_set_s32(t, 4, thread__tid(thread));
1201
1202 call_object(tables->thread_handler, t, "thread_table");
1203
1204 Py_DECREF(t);
1205
1206 return 0;
1207}
1208
1209static int python_export_comm(struct db_export *dbe, struct comm *comm,
1210 struct thread *thread)
1211{
1212 struct tables *tables = container_of(dbe, struct tables, dbe);
1213 PyObject *t;
1214
1215 t = tuple_new(5);
1216
1217 tuple_set_d64(t, 0, comm->db_id);
1218 tuple_set_string(t, 1, comm__str(comm));
1219 tuple_set_d64(t, 2, thread__db_id(thread));
1220 tuple_set_d64(t, 3, comm->start);
1221 tuple_set_s32(t, 4, comm->exec);
1222
1223 call_object(tables->comm_handler, t, "comm_table");
1224
1225 Py_DECREF(t);
1226
1227 return 0;
1228}
1229
1230static int python_export_comm_thread(struct db_export *dbe, u64 db_id,
1231 struct comm *comm, struct thread *thread)
1232{
1233 struct tables *tables = container_of(dbe, struct tables, dbe);
1234 PyObject *t;
1235
1236 t = tuple_new(3);
1237
1238 tuple_set_d64(t, 0, db_id);
1239 tuple_set_d64(t, 1, comm->db_id);
1240 tuple_set_d64(t, 2, thread__db_id(thread));
1241
1242 call_object(tables->comm_thread_handler, t, "comm_thread_table");
1243
1244 Py_DECREF(t);
1245
1246 return 0;
1247}
1248
1249static int python_export_dso(struct db_export *dbe, struct dso *dso,
1250 struct machine *machine)
1251{
1252 struct tables *tables = container_of(dbe, struct tables, dbe);
1253 char sbuild_id[SBUILD_ID_SIZE];
1254 PyObject *t;
1255
1256 build_id__sprintf(dso__bid(dso), sbuild_id);
1257
1258 t = tuple_new(5);
1259
1260 tuple_set_d64(t, 0, dso__db_id(dso));
1261 tuple_set_d64(t, 1, machine->db_id);
1262 tuple_set_string(t, 2, dso__short_name(dso));
1263 tuple_set_string(t, 3, dso__long_name(dso));
1264 tuple_set_string(t, 4, sbuild_id);
1265
1266 call_object(tables->dso_handler, t, "dso_table");
1267
1268 Py_DECREF(t);
1269
1270 return 0;
1271}
1272
1273static int python_export_symbol(struct db_export *dbe, struct symbol *sym,
1274 struct dso *dso)
1275{
1276 struct tables *tables = container_of(dbe, struct tables, dbe);
1277 u64 *sym_db_id = symbol__priv(sym);
1278 PyObject *t;
1279
1280 t = tuple_new(6);
1281
1282 tuple_set_d64(t, 0, *sym_db_id);
1283 tuple_set_d64(t, 1, dso__db_id(dso));
1284 tuple_set_d64(t, 2, sym->start);
1285 tuple_set_d64(t, 3, sym->end);
1286 tuple_set_s32(t, 4, sym->binding);
1287 tuple_set_string(t, 5, sym->name);
1288
1289 call_object(tables->symbol_handler, t, "symbol_table");
1290
1291 Py_DECREF(t);
1292
1293 return 0;
1294}
1295
1296static int python_export_branch_type(struct db_export *dbe, u32 branch_type,
1297 const char *name)
1298{
1299 struct tables *tables = container_of(dbe, struct tables, dbe);
1300 PyObject *t;
1301
1302 t = tuple_new(2);
1303
1304 tuple_set_s32(t, 0, branch_type);
1305 tuple_set_string(t, 1, name);
1306
1307 call_object(tables->branch_type_handler, t, "branch_type_table");
1308
1309 Py_DECREF(t);
1310
1311 return 0;
1312}
1313
1314static void python_export_sample_table(struct db_export *dbe,
1315 struct export_sample *es)
1316{
1317 struct tables *tables = container_of(dbe, struct tables, dbe);
1318 PyObject *t;
1319
1320 t = tuple_new(28);
1321
1322 tuple_set_d64(t, 0, es->db_id);
1323 tuple_set_d64(t, 1, es->evsel->db_id);
1324 tuple_set_d64(t, 2, maps__machine(es->al->maps)->db_id);
1325 tuple_set_d64(t, 3, thread__db_id(es->al->thread));
1326 tuple_set_d64(t, 4, es->comm_db_id);
1327 tuple_set_d64(t, 5, es->dso_db_id);
1328 tuple_set_d64(t, 6, es->sym_db_id);
1329 tuple_set_d64(t, 7, es->offset);
1330 tuple_set_d64(t, 8, es->sample->ip);
1331 tuple_set_d64(t, 9, es->sample->time);
1332 tuple_set_s32(t, 10, es->sample->cpu);
1333 tuple_set_d64(t, 11, es->addr_dso_db_id);
1334 tuple_set_d64(t, 12, es->addr_sym_db_id);
1335 tuple_set_d64(t, 13, es->addr_offset);
1336 tuple_set_d64(t, 14, es->sample->addr);
1337 tuple_set_d64(t, 15, es->sample->period);
1338 tuple_set_d64(t, 16, es->sample->weight);
1339 tuple_set_d64(t, 17, es->sample->transaction);
1340 tuple_set_d64(t, 18, es->sample->data_src);
1341 tuple_set_s32(t, 19, es->sample->flags & PERF_BRANCH_MASK);
1342 tuple_set_s32(t, 20, !!(es->sample->flags & PERF_IP_FLAG_IN_TX));
1343 tuple_set_d64(t, 21, es->call_path_id);
1344 tuple_set_d64(t, 22, es->sample->insn_cnt);
1345 tuple_set_d64(t, 23, es->sample->cyc_cnt);
1346 tuple_set_s32(t, 24, es->sample->flags);
1347 tuple_set_d64(t, 25, es->sample->id);
1348 tuple_set_d64(t, 26, es->sample->stream_id);
1349 tuple_set_u32(t, 27, es->sample->ins_lat);
1350
1351 call_object(tables->sample_handler, t, "sample_table");
1352
1353 Py_DECREF(t);
1354}
1355
1356static void python_export_synth(struct db_export *dbe, struct export_sample *es)
1357{
1358 struct tables *tables = container_of(dbe, struct tables, dbe);
1359 PyObject *t;
1360
1361 t = tuple_new(3);
1362
1363 tuple_set_d64(t, 0, es->db_id);
1364 tuple_set_d64(t, 1, es->evsel->core.attr.config);
1365 tuple_set_bytes(t, 2, es->sample->raw_data, es->sample->raw_size);
1366
1367 call_object(tables->synth_handler, t, "synth_data");
1368
1369 Py_DECREF(t);
1370}
1371
1372static int python_export_sample(struct db_export *dbe,
1373 struct export_sample *es)
1374{
1375 struct tables *tables = container_of(dbe, struct tables, dbe);
1376
1377 python_export_sample_table(dbe, es);
1378
1379 if (es->evsel->core.attr.type == PERF_TYPE_SYNTH && tables->synth_handler)
1380 python_export_synth(dbe, es);
1381
1382 return 0;
1383}
1384
1385static int python_export_call_path(struct db_export *dbe, struct call_path *cp)
1386{
1387 struct tables *tables = container_of(dbe, struct tables, dbe);
1388 PyObject *t;
1389 u64 parent_db_id, sym_db_id;
1390
1391 parent_db_id = cp->parent ? cp->parent->db_id : 0;
1392 sym_db_id = cp->sym ? *(u64 *)symbol__priv(cp->sym) : 0;
1393
1394 t = tuple_new(4);
1395
1396 tuple_set_d64(t, 0, cp->db_id);
1397 tuple_set_d64(t, 1, parent_db_id);
1398 tuple_set_d64(t, 2, sym_db_id);
1399 tuple_set_d64(t, 3, cp->ip);
1400
1401 call_object(tables->call_path_handler, t, "call_path_table");
1402
1403 Py_DECREF(t);
1404
1405 return 0;
1406}
1407
1408static int python_export_call_return(struct db_export *dbe,
1409 struct call_return *cr)
1410{
1411 struct tables *tables = container_of(dbe, struct tables, dbe);
1412 u64 comm_db_id = cr->comm ? cr->comm->db_id : 0;
1413 PyObject *t;
1414
1415 t = tuple_new(14);
1416
1417 tuple_set_d64(t, 0, cr->db_id);
1418 tuple_set_d64(t, 1, thread__db_id(cr->thread));
1419 tuple_set_d64(t, 2, comm_db_id);
1420 tuple_set_d64(t, 3, cr->cp->db_id);
1421 tuple_set_d64(t, 4, cr->call_time);
1422 tuple_set_d64(t, 5, cr->return_time);
1423 tuple_set_d64(t, 6, cr->branch_count);
1424 tuple_set_d64(t, 7, cr->call_ref);
1425 tuple_set_d64(t, 8, cr->return_ref);
1426 tuple_set_d64(t, 9, cr->cp->parent->db_id);
1427 tuple_set_s32(t, 10, cr->flags);
1428 tuple_set_d64(t, 11, cr->parent_db_id);
1429 tuple_set_d64(t, 12, cr->insn_count);
1430 tuple_set_d64(t, 13, cr->cyc_count);
1431
1432 call_object(tables->call_return_handler, t, "call_return_table");
1433
1434 Py_DECREF(t);
1435
1436 return 0;
1437}
1438
1439static int python_export_context_switch(struct db_export *dbe, u64 db_id,
1440 struct machine *machine,
1441 struct perf_sample *sample,
1442 u64 th_out_id, u64 comm_out_id,
1443 u64 th_in_id, u64 comm_in_id, int flags)
1444{
1445 struct tables *tables = container_of(dbe, struct tables, dbe);
1446 PyObject *t;
1447
1448 t = tuple_new(9);
1449
1450 tuple_set_d64(t, 0, db_id);
1451 tuple_set_d64(t, 1, machine->db_id);
1452 tuple_set_d64(t, 2, sample->time);
1453 tuple_set_s32(t, 3, sample->cpu);
1454 tuple_set_d64(t, 4, th_out_id);
1455 tuple_set_d64(t, 5, comm_out_id);
1456 tuple_set_d64(t, 6, th_in_id);
1457 tuple_set_d64(t, 7, comm_in_id);
1458 tuple_set_s32(t, 8, flags);
1459
1460 call_object(tables->context_switch_handler, t, "context_switch");
1461
1462 Py_DECREF(t);
1463
1464 return 0;
1465}
1466
1467static int python_process_call_return(struct call_return *cr, u64 *parent_db_id,
1468 void *data)
1469{
1470 struct db_export *dbe = data;
1471
1472 return db_export__call_return(dbe, cr, parent_db_id);
1473}
1474
1475static void python_process_general_event(struct perf_sample *sample,
1476 struct evsel *evsel,
1477 struct addr_location *al,
1478 struct addr_location *addr_al)
1479{
1480 PyObject *handler, *t, *dict, *callchain;
1481 static char handler_name[64];
1482 unsigned n = 0;
1483
1484 snprintf(handler_name, sizeof(handler_name), "%s", "process_event");
1485
1486 handler = get_handler(handler_name);
1487 if (!handler)
1488 return;
1489
1490 /*
1491 * Use the MAX_FIELDS to make the function expandable, though
1492 * currently there is only one item for the tuple.
1493 */
1494 t = PyTuple_New(MAX_FIELDS);
1495 if (!t)
1496 Py_FatalError("couldn't create Python tuple");
1497
1498 /* ip unwinding */
1499 callchain = python_process_callchain(sample, evsel, al);
1500 dict = get_perf_sample_dict(sample, evsel, al, addr_al, callchain);
1501
1502 PyTuple_SetItem(t, n++, dict);
1503 if (_PyTuple_Resize(&t, n) == -1)
1504 Py_FatalError("error resizing Python tuple");
1505
1506 call_object(handler, t, handler_name);
1507
1508 Py_DECREF(t);
1509}
1510
1511static void python_process_event(union perf_event *event,
1512 struct perf_sample *sample,
1513 struct evsel *evsel,
1514 struct addr_location *al,
1515 struct addr_location *addr_al)
1516{
1517 struct tables *tables = &tables_global;
1518
1519 scripting_context__update(scripting_context, event, sample, evsel, al, addr_al);
1520
1521 switch (evsel->core.attr.type) {
1522 case PERF_TYPE_TRACEPOINT:
1523 python_process_tracepoint(sample, evsel, al, addr_al);
1524 break;
1525 /* Reserve for future process_hw/sw/raw APIs */
1526 default:
1527 if (tables->db_export_mode)
1528 db_export__sample(&tables->dbe, event, sample, evsel, al, addr_al);
1529 else
1530 python_process_general_event(sample, evsel, al, addr_al);
1531 }
1532}
1533
1534static void python_process_throttle(union perf_event *event,
1535 struct perf_sample *sample,
1536 struct machine *machine)
1537{
1538 const char *handler_name;
1539 PyObject *handler, *t;
1540
1541 if (event->header.type == PERF_RECORD_THROTTLE)
1542 handler_name = "throttle";
1543 else
1544 handler_name = "unthrottle";
1545 handler = get_handler(handler_name);
1546 if (!handler)
1547 return;
1548
1549 t = tuple_new(6);
1550 if (!t)
1551 return;
1552
1553 tuple_set_u64(t, 0, event->throttle.time);
1554 tuple_set_u64(t, 1, event->throttle.id);
1555 tuple_set_u64(t, 2, event->throttle.stream_id);
1556 tuple_set_s32(t, 3, sample->cpu);
1557 tuple_set_s32(t, 4, sample->pid);
1558 tuple_set_s32(t, 5, sample->tid);
1559
1560 call_object(handler, t, handler_name);
1561
1562 Py_DECREF(t);
1563}
1564
1565static void python_do_process_switch(union perf_event *event,
1566 struct perf_sample *sample,
1567 struct machine *machine)
1568{
1569 const char *handler_name = "context_switch";
1570 bool out = event->header.misc & PERF_RECORD_MISC_SWITCH_OUT;
1571 bool out_preempt = out && (event->header.misc & PERF_RECORD_MISC_SWITCH_OUT_PREEMPT);
1572 pid_t np_pid = -1, np_tid = -1;
1573 PyObject *handler, *t;
1574
1575 handler = get_handler(handler_name);
1576 if (!handler)
1577 return;
1578
1579 if (event->header.type == PERF_RECORD_SWITCH_CPU_WIDE) {
1580 np_pid = event->context_switch.next_prev_pid;
1581 np_tid = event->context_switch.next_prev_tid;
1582 }
1583
1584 t = tuple_new(11);
1585 if (!t)
1586 return;
1587
1588 tuple_set_u64(t, 0, sample->time);
1589 tuple_set_s32(t, 1, sample->cpu);
1590 tuple_set_s32(t, 2, sample->pid);
1591 tuple_set_s32(t, 3, sample->tid);
1592 tuple_set_s32(t, 4, np_pid);
1593 tuple_set_s32(t, 5, np_tid);
1594 tuple_set_s32(t, 6, machine->pid);
1595 tuple_set_bool(t, 7, out);
1596 tuple_set_bool(t, 8, out_preempt);
1597 tuple_set_s32(t, 9, sample->machine_pid);
1598 tuple_set_s32(t, 10, sample->vcpu);
1599
1600 call_object(handler, t, handler_name);
1601
1602 Py_DECREF(t);
1603}
1604
1605static void python_process_switch(union perf_event *event,
1606 struct perf_sample *sample,
1607 struct machine *machine)
1608{
1609 struct tables *tables = &tables_global;
1610
1611 if (tables->db_export_mode)
1612 db_export__switch(&tables->dbe, event, sample, machine);
1613 else
1614 python_do_process_switch(event, sample, machine);
1615}
1616
1617static void python_process_auxtrace_error(struct perf_session *session __maybe_unused,
1618 union perf_event *event)
1619{
1620 struct perf_record_auxtrace_error *e = &event->auxtrace_error;
1621 u8 cpumode = e->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
1622 const char *handler_name = "auxtrace_error";
1623 unsigned long long tm = e->time;
1624 const char *msg = e->msg;
1625 PyObject *handler, *t;
1626
1627 handler = get_handler(handler_name);
1628 if (!handler)
1629 return;
1630
1631 if (!e->fmt) {
1632 tm = 0;
1633 msg = (const char *)&e->time;
1634 }
1635
1636 t = tuple_new(11);
1637
1638 tuple_set_u32(t, 0, e->type);
1639 tuple_set_u32(t, 1, e->code);
1640 tuple_set_s32(t, 2, e->cpu);
1641 tuple_set_s32(t, 3, e->pid);
1642 tuple_set_s32(t, 4, e->tid);
1643 tuple_set_u64(t, 5, e->ip);
1644 tuple_set_u64(t, 6, tm);
1645 tuple_set_string(t, 7, msg);
1646 tuple_set_u32(t, 8, cpumode);
1647 tuple_set_s32(t, 9, e->machine_pid);
1648 tuple_set_s32(t, 10, e->vcpu);
1649
1650 call_object(handler, t, handler_name);
1651
1652 Py_DECREF(t);
1653}
1654
1655static void get_handler_name(char *str, size_t size,
1656 struct evsel *evsel)
1657{
1658 char *p = str;
1659
1660 scnprintf(str, size, "stat__%s", evsel__name(evsel));
1661
1662 while ((p = strchr(p, ':'))) {
1663 *p = '_';
1664 p++;
1665 }
1666}
1667
1668static void
1669process_stat(struct evsel *counter, struct perf_cpu cpu, int thread, u64 tstamp,
1670 struct perf_counts_values *count)
1671{
1672 PyObject *handler, *t;
1673 static char handler_name[256];
1674 int n = 0;
1675
1676 t = PyTuple_New(MAX_FIELDS);
1677 if (!t)
1678 Py_FatalError("couldn't create Python tuple");
1679
1680 get_handler_name(handler_name, sizeof(handler_name),
1681 counter);
1682
1683 handler = get_handler(handler_name);
1684 if (!handler) {
1685 pr_debug("can't find python handler %s\n", handler_name);
1686 return;
1687 }
1688
1689 PyTuple_SetItem(t, n++, _PyLong_FromLong(cpu.cpu));
1690 PyTuple_SetItem(t, n++, _PyLong_FromLong(thread));
1691
1692 tuple_set_u64(t, n++, tstamp);
1693 tuple_set_u64(t, n++, count->val);
1694 tuple_set_u64(t, n++, count->ena);
1695 tuple_set_u64(t, n++, count->run);
1696
1697 if (_PyTuple_Resize(&t, n) == -1)
1698 Py_FatalError("error resizing Python tuple");
1699
1700 call_object(handler, t, handler_name);
1701
1702 Py_DECREF(t);
1703}
1704
1705static void python_process_stat(struct perf_stat_config *config,
1706 struct evsel *counter, u64 tstamp)
1707{
1708 struct perf_thread_map *threads = counter->core.threads;
1709 struct perf_cpu_map *cpus = counter->core.cpus;
1710
1711 for (int thread = 0; thread < perf_thread_map__nr(threads); thread++) {
1712 int idx;
1713 struct perf_cpu cpu;
1714
1715 perf_cpu_map__for_each_cpu(cpu, idx, cpus) {
1716 process_stat(counter, cpu,
1717 perf_thread_map__pid(threads, thread), tstamp,
1718 perf_counts(counter->counts, idx, thread));
1719 }
1720 }
1721}
1722
1723static void python_process_stat_interval(u64 tstamp)
1724{
1725 PyObject *handler, *t;
1726 static const char handler_name[] = "stat__interval";
1727 int n = 0;
1728
1729 t = PyTuple_New(MAX_FIELDS);
1730 if (!t)
1731 Py_FatalError("couldn't create Python tuple");
1732
1733 handler = get_handler(handler_name);
1734 if (!handler) {
1735 pr_debug("can't find python handler %s\n", handler_name);
1736 return;
1737 }
1738
1739 tuple_set_u64(t, n++, tstamp);
1740
1741 if (_PyTuple_Resize(&t, n) == -1)
1742 Py_FatalError("error resizing Python tuple");
1743
1744 call_object(handler, t, handler_name);
1745
1746 Py_DECREF(t);
1747}
1748
1749static int perf_script_context_init(void)
1750{
1751 PyObject *perf_script_context;
1752 PyObject *perf_trace_context;
1753 PyObject *dict;
1754 int ret;
1755
1756 perf_trace_context = PyImport_AddModule("perf_trace_context");
1757 if (!perf_trace_context)
1758 return -1;
1759 dict = PyModule_GetDict(perf_trace_context);
1760 if (!dict)
1761 return -1;
1762
1763 perf_script_context = _PyCapsule_New(scripting_context, NULL, NULL);
1764 if (!perf_script_context)
1765 return -1;
1766
1767 ret = PyDict_SetItemString(dict, "perf_script_context", perf_script_context);
1768 if (!ret)
1769 ret = PyDict_SetItemString(main_dict, "perf_script_context", perf_script_context);
1770 Py_DECREF(perf_script_context);
1771 return ret;
1772}
1773
1774static int run_start_sub(void)
1775{
1776 main_module = PyImport_AddModule("__main__");
1777 if (main_module == NULL)
1778 return -1;
1779 Py_INCREF(main_module);
1780
1781 main_dict = PyModule_GetDict(main_module);
1782 if (main_dict == NULL)
1783 goto error;
1784 Py_INCREF(main_dict);
1785
1786 if (perf_script_context_init())
1787 goto error;
1788
1789 try_call_object("trace_begin", NULL);
1790
1791 return 0;
1792
1793error:
1794 Py_XDECREF(main_dict);
1795 Py_XDECREF(main_module);
1796 return -1;
1797}
1798
1799#define SET_TABLE_HANDLER_(name, handler_name, table_name) do { \
1800 tables->handler_name = get_handler(#table_name); \
1801 if (tables->handler_name) \
1802 tables->dbe.export_ ## name = python_export_ ## name; \
1803} while (0)
1804
1805#define SET_TABLE_HANDLER(name) \
1806 SET_TABLE_HANDLER_(name, name ## _handler, name ## _table)
1807
1808static void set_table_handlers(struct tables *tables)
1809{
1810 const char *perf_db_export_mode = "perf_db_export_mode";
1811 const char *perf_db_export_calls = "perf_db_export_calls";
1812 const char *perf_db_export_callchains = "perf_db_export_callchains";
1813 PyObject *db_export_mode, *db_export_calls, *db_export_callchains;
1814 bool export_calls = false;
1815 bool export_callchains = false;
1816 int ret;
1817
1818 memset(tables, 0, sizeof(struct tables));
1819 if (db_export__init(&tables->dbe))
1820 Py_FatalError("failed to initialize export");
1821
1822 db_export_mode = PyDict_GetItemString(main_dict, perf_db_export_mode);
1823 if (!db_export_mode)
1824 return;
1825
1826 ret = PyObject_IsTrue(db_export_mode);
1827 if (ret == -1)
1828 handler_call_die(perf_db_export_mode);
1829 if (!ret)
1830 return;
1831
1832 /* handle export calls */
1833 tables->dbe.crp = NULL;
1834 db_export_calls = PyDict_GetItemString(main_dict, perf_db_export_calls);
1835 if (db_export_calls) {
1836 ret = PyObject_IsTrue(db_export_calls);
1837 if (ret == -1)
1838 handler_call_die(perf_db_export_calls);
1839 export_calls = !!ret;
1840 }
1841
1842 if (export_calls) {
1843 tables->dbe.crp =
1844 call_return_processor__new(python_process_call_return,
1845 &tables->dbe);
1846 if (!tables->dbe.crp)
1847 Py_FatalError("failed to create calls processor");
1848 }
1849
1850 /* handle export callchains */
1851 tables->dbe.cpr = NULL;
1852 db_export_callchains = PyDict_GetItemString(main_dict,
1853 perf_db_export_callchains);
1854 if (db_export_callchains) {
1855 ret = PyObject_IsTrue(db_export_callchains);
1856 if (ret == -1)
1857 handler_call_die(perf_db_export_callchains);
1858 export_callchains = !!ret;
1859 }
1860
1861 if (export_callchains) {
1862 /*
1863 * Attempt to use the call path root from the call return
1864 * processor, if the call return processor is in use. Otherwise,
1865 * we allocate a new call path root. This prevents exporting
1866 * duplicate call path ids when both are in use simultaneously.
1867 */
1868 if (tables->dbe.crp)
1869 tables->dbe.cpr = tables->dbe.crp->cpr;
1870 else
1871 tables->dbe.cpr = call_path_root__new();
1872
1873 if (!tables->dbe.cpr)
1874 Py_FatalError("failed to create call path root");
1875 }
1876
1877 tables->db_export_mode = true;
1878 /*
1879 * Reserve per symbol space for symbol->db_id via symbol__priv()
1880 */
1881 symbol_conf.priv_size = sizeof(u64);
1882
1883 SET_TABLE_HANDLER(evsel);
1884 SET_TABLE_HANDLER(machine);
1885 SET_TABLE_HANDLER(thread);
1886 SET_TABLE_HANDLER(comm);
1887 SET_TABLE_HANDLER(comm_thread);
1888 SET_TABLE_HANDLER(dso);
1889 SET_TABLE_HANDLER(symbol);
1890 SET_TABLE_HANDLER(branch_type);
1891 SET_TABLE_HANDLER(sample);
1892 SET_TABLE_HANDLER(call_path);
1893 SET_TABLE_HANDLER(call_return);
1894 SET_TABLE_HANDLER(context_switch);
1895
1896 /*
1897 * Synthesized events are samples but with architecture-specific data
1898 * stored in sample->raw_data. They are exported via
1899 * python_export_sample() and consequently do not need a separate export
1900 * callback.
1901 */
1902 tables->synth_handler = get_handler("synth_data");
1903}
1904
1905#if PY_MAJOR_VERSION < 3
1906static void _free_command_line(const char **command_line, int num)
1907{
1908 free(command_line);
1909}
1910#else
1911static void _free_command_line(wchar_t **command_line, int num)
1912{
1913 int i;
1914 for (i = 0; i < num; i++)
1915 PyMem_RawFree(command_line[i]);
1916 free(command_line);
1917}
1918#endif
1919
1920
1921/*
1922 * Start trace script
1923 */
1924static int python_start_script(const char *script, int argc, const char **argv,
1925 struct perf_session *session)
1926{
1927 struct tables *tables = &tables_global;
1928#if PY_MAJOR_VERSION < 3
1929 const char **command_line;
1930#else
1931 wchar_t **command_line;
1932#endif
1933 /*
1934 * Use a non-const name variable to cope with python 2.6's
1935 * PyImport_AppendInittab prototype
1936 */
1937 char buf[PATH_MAX], name[19] = "perf_trace_context";
1938 int i, err = 0;
1939 FILE *fp;
1940
1941 scripting_context->session = session;
1942#if PY_MAJOR_VERSION < 3
1943 command_line = malloc((argc + 1) * sizeof(const char *));
1944 if (!command_line)
1945 return -1;
1946
1947 command_line[0] = script;
1948 for (i = 1; i < argc + 1; i++)
1949 command_line[i] = argv[i - 1];
1950 PyImport_AppendInittab(name, initperf_trace_context);
1951#else
1952 command_line = malloc((argc + 1) * sizeof(wchar_t *));
1953 if (!command_line)
1954 return -1;
1955
1956 command_line[0] = Py_DecodeLocale(script, NULL);
1957 for (i = 1; i < argc + 1; i++)
1958 command_line[i] = Py_DecodeLocale(argv[i - 1], NULL);
1959 PyImport_AppendInittab(name, PyInit_perf_trace_context);
1960#endif
1961 Py_Initialize();
1962
1963#if PY_MAJOR_VERSION < 3
1964 PySys_SetArgv(argc + 1, (char **)command_line);
1965#else
1966 PySys_SetArgv(argc + 1, command_line);
1967#endif
1968
1969 fp = fopen(script, "r");
1970 if (!fp) {
1971 sprintf(buf, "Can't open python script \"%s\"", script);
1972 perror(buf);
1973 err = -1;
1974 goto error;
1975 }
1976
1977 err = PyRun_SimpleFile(fp, script);
1978 if (err) {
1979 fprintf(stderr, "Error running python script %s\n", script);
1980 goto error;
1981 }
1982
1983 err = run_start_sub();
1984 if (err) {
1985 fprintf(stderr, "Error starting python script %s\n", script);
1986 goto error;
1987 }
1988
1989 set_table_handlers(tables);
1990
1991 if (tables->db_export_mode) {
1992 err = db_export__branch_types(&tables->dbe);
1993 if (err)
1994 goto error;
1995 }
1996
1997 _free_command_line(command_line, argc + 1);
1998
1999 return err;
2000error:
2001 Py_Finalize();
2002 _free_command_line(command_line, argc + 1);
2003
2004 return err;
2005}
2006
2007static int python_flush_script(void)
2008{
2009 return 0;
2010}
2011
2012/*
2013 * Stop trace script
2014 */
2015static int python_stop_script(void)
2016{
2017 struct tables *tables = &tables_global;
2018
2019 try_call_object("trace_end", NULL);
2020
2021 db_export__exit(&tables->dbe);
2022
2023 Py_XDECREF(main_dict);
2024 Py_XDECREF(main_module);
2025 Py_Finalize();
2026
2027 return 0;
2028}
2029
2030#ifdef HAVE_LIBTRACEEVENT
2031static int python_generate_script(struct tep_handle *pevent, const char *outfile)
2032{
2033 int i, not_first, count, nr_events;
2034 struct tep_event **all_events;
2035 struct tep_event *event = NULL;
2036 struct tep_format_field *f;
2037 char fname[PATH_MAX];
2038 FILE *ofp;
2039
2040 sprintf(fname, "%s.py", outfile);
2041 ofp = fopen(fname, "w");
2042 if (ofp == NULL) {
2043 fprintf(stderr, "couldn't open %s\n", fname);
2044 return -1;
2045 }
2046 fprintf(ofp, "# perf script event handlers, "
2047 "generated by perf script -g python\n");
2048
2049 fprintf(ofp, "# Licensed under the terms of the GNU GPL"
2050 " License version 2\n\n");
2051
2052 fprintf(ofp, "# The common_* event handler fields are the most useful "
2053 "fields common to\n");
2054
2055 fprintf(ofp, "# all events. They don't necessarily correspond to "
2056 "the 'common_*' fields\n");
2057
2058 fprintf(ofp, "# in the format files. Those fields not available as "
2059 "handler params can\n");
2060
2061 fprintf(ofp, "# be retrieved using Python functions of the form "
2062 "common_*(context).\n");
2063
2064 fprintf(ofp, "# See the perf-script-python Documentation for the list "
2065 "of available functions.\n\n");
2066
2067 fprintf(ofp, "from __future__ import print_function\n\n");
2068 fprintf(ofp, "import os\n");
2069 fprintf(ofp, "import sys\n\n");
2070
2071 fprintf(ofp, "sys.path.append(os.environ['PERF_EXEC_PATH'] + \\\n");
2072 fprintf(ofp, "\t'/scripts/python/Perf-Trace-Util/lib/Perf/Trace')\n");
2073 fprintf(ofp, "\nfrom perf_trace_context import *\n");
2074 fprintf(ofp, "from Core import *\n\n\n");
2075
2076 fprintf(ofp, "def trace_begin():\n");
2077 fprintf(ofp, "\tprint(\"in trace_begin\")\n\n");
2078
2079 fprintf(ofp, "def trace_end():\n");
2080 fprintf(ofp, "\tprint(\"in trace_end\")\n\n");
2081
2082 nr_events = tep_get_events_count(pevent);
2083 all_events = tep_list_events(pevent, TEP_EVENT_SORT_ID);
2084
2085 for (i = 0; all_events && i < nr_events; i++) {
2086 event = all_events[i];
2087 fprintf(ofp, "def %s__%s(", event->system, event->name);
2088 fprintf(ofp, "event_name, ");
2089 fprintf(ofp, "context, ");
2090 fprintf(ofp, "common_cpu,\n");
2091 fprintf(ofp, "\tcommon_secs, ");
2092 fprintf(ofp, "common_nsecs, ");
2093 fprintf(ofp, "common_pid, ");
2094 fprintf(ofp, "common_comm,\n\t");
2095 fprintf(ofp, "common_callchain, ");
2096
2097 not_first = 0;
2098 count = 0;
2099
2100 for (f = event->format.fields; f; f = f->next) {
2101 if (not_first++)
2102 fprintf(ofp, ", ");
2103 if (++count % 5 == 0)
2104 fprintf(ofp, "\n\t");
2105
2106 fprintf(ofp, "%s", f->name);
2107 }
2108 if (not_first++)
2109 fprintf(ofp, ", ");
2110 if (++count % 5 == 0)
2111 fprintf(ofp, "\n\t\t");
2112 fprintf(ofp, "perf_sample_dict");
2113
2114 fprintf(ofp, "):\n");
2115
2116 fprintf(ofp, "\t\tprint_header(event_name, common_cpu, "
2117 "common_secs, common_nsecs,\n\t\t\t"
2118 "common_pid, common_comm)\n\n");
2119
2120 fprintf(ofp, "\t\tprint(\"");
2121
2122 not_first = 0;
2123 count = 0;
2124
2125 for (f = event->format.fields; f; f = f->next) {
2126 if (not_first++)
2127 fprintf(ofp, ", ");
2128 if (count && count % 3 == 0) {
2129 fprintf(ofp, "\" \\\n\t\t\"");
2130 }
2131 count++;
2132
2133 fprintf(ofp, "%s=", f->name);
2134 if (f->flags & TEP_FIELD_IS_STRING ||
2135 f->flags & TEP_FIELD_IS_FLAG ||
2136 f->flags & TEP_FIELD_IS_ARRAY ||
2137 f->flags & TEP_FIELD_IS_SYMBOLIC)
2138 fprintf(ofp, "%%s");
2139 else if (f->flags & TEP_FIELD_IS_SIGNED)
2140 fprintf(ofp, "%%d");
2141 else
2142 fprintf(ofp, "%%u");
2143 }
2144
2145 fprintf(ofp, "\" %% \\\n\t\t(");
2146
2147 not_first = 0;
2148 count = 0;
2149
2150 for (f = event->format.fields; f; f = f->next) {
2151 if (not_first++)
2152 fprintf(ofp, ", ");
2153
2154 if (++count % 5 == 0)
2155 fprintf(ofp, "\n\t\t");
2156
2157 if (f->flags & TEP_FIELD_IS_FLAG) {
2158 if ((count - 1) % 5 != 0) {
2159 fprintf(ofp, "\n\t\t");
2160 count = 4;
2161 }
2162 fprintf(ofp, "flag_str(\"");
2163 fprintf(ofp, "%s__%s\", ", event->system,
2164 event->name);
2165 fprintf(ofp, "\"%s\", %s)", f->name,
2166 f->name);
2167 } else if (f->flags & TEP_FIELD_IS_SYMBOLIC) {
2168 if ((count - 1) % 5 != 0) {
2169 fprintf(ofp, "\n\t\t");
2170 count = 4;
2171 }
2172 fprintf(ofp, "symbol_str(\"");
2173 fprintf(ofp, "%s__%s\", ", event->system,
2174 event->name);
2175 fprintf(ofp, "\"%s\", %s)", f->name,
2176 f->name);
2177 } else
2178 fprintf(ofp, "%s", f->name);
2179 }
2180
2181 fprintf(ofp, "))\n\n");
2182
2183 fprintf(ofp, "\t\tprint('Sample: {'+"
2184 "get_dict_as_string(perf_sample_dict['sample'], ', ')+'}')\n\n");
2185
2186 fprintf(ofp, "\t\tfor node in common_callchain:");
2187 fprintf(ofp, "\n\t\t\tif 'sym' in node:");
2188 fprintf(ofp, "\n\t\t\t\tprint(\"\t[%%x] %%s%%s%%s%%s\" %% (");
2189 fprintf(ofp, "\n\t\t\t\t\tnode['ip'], node['sym']['name'],");
2190 fprintf(ofp, "\n\t\t\t\t\t\"+0x{:x}\".format(node['sym_off']) if 'sym_off' in node else \"\",");
2191 fprintf(ofp, "\n\t\t\t\t\t\" ({})\".format(node['dso']) if 'dso' in node else \"\",");
2192 fprintf(ofp, "\n\t\t\t\t\t\" \" + node['sym_srcline'] if 'sym_srcline' in node else \"\"))");
2193 fprintf(ofp, "\n\t\t\telse:");
2194 fprintf(ofp, "\n\t\t\t\tprint(\"\t[%%x]\" %% (node['ip']))\n\n");
2195 fprintf(ofp, "\t\tprint()\n\n");
2196
2197 }
2198
2199 fprintf(ofp, "def trace_unhandled(event_name, context, "
2200 "event_fields_dict, perf_sample_dict):\n");
2201
2202 fprintf(ofp, "\t\tprint(get_dict_as_string(event_fields_dict))\n");
2203 fprintf(ofp, "\t\tprint('Sample: {'+"
2204 "get_dict_as_string(perf_sample_dict['sample'], ', ')+'}')\n\n");
2205
2206 fprintf(ofp, "def print_header("
2207 "event_name, cpu, secs, nsecs, pid, comm):\n"
2208 "\tprint(\"%%-20s %%5u %%05u.%%09u %%8u %%-20s \" %% \\\n\t"
2209 "(event_name, cpu, secs, nsecs, pid, comm), end=\"\")\n\n");
2210
2211 fprintf(ofp, "def get_dict_as_string(a_dict, delimiter=' '):\n"
2212 "\treturn delimiter.join"
2213 "(['%%s=%%s'%%(k,str(v))for k,v in sorted(a_dict.items())])\n");
2214
2215 fclose(ofp);
2216
2217 fprintf(stderr, "generated Python script: %s\n", fname);
2218
2219 return 0;
2220}
2221#else
2222static int python_generate_script(struct tep_handle *pevent __maybe_unused,
2223 const char *outfile __maybe_unused)
2224{
2225 fprintf(stderr, "Generating Python perf-script is not supported."
2226 " Install libtraceevent and rebuild perf to enable it.\n"
2227 "For example:\n # apt install libtraceevent-dev (ubuntu)"
2228 "\n # yum install libtraceevent-devel (Fedora)"
2229 "\n etc.\n");
2230 return -1;
2231}
2232#endif
2233
2234struct scripting_ops python_scripting_ops = {
2235 .name = "Python",
2236 .dirname = "python",
2237 .start_script = python_start_script,
2238 .flush_script = python_flush_script,
2239 .stop_script = python_stop_script,
2240 .process_event = python_process_event,
2241 .process_switch = python_process_switch,
2242 .process_auxtrace_error = python_process_auxtrace_error,
2243 .process_stat = python_process_stat,
2244 .process_stat_interval = python_process_stat_interval,
2245 .process_throttle = python_process_throttle,
2246 .generate_script = python_generate_script,
2247};