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