1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Context.c. Python interfaces for perf script.
9 * Use Py_ssize_t for '#' formats to avoid DeprecationWarning: PY_SSIZE_T_CLEAN
10 * will be required for '#' formats.
12 #define PY_SSIZE_T_CLEAN
15 #include "../../../util/trace-event.h"
16 #include "../../../util/event.h"
17 #include "../../../util/symbol.h"
18 #include "../../../util/thread.h"
19 #include "../../../util/map.h"
20 #include "../../../util/maps.h"
21 #include "../../../util/auxtrace.h"
22 #include "../../../util/session.h"
23 #include "../../../util/srcline.h"
24 #include "../../../util/srccode.h"
26 #if PY_MAJOR_VERSION < 3
27 #define _PyCapsule_GetPointer(arg1, arg2) \
28 PyCObject_AsVoidPtr(arg1)
29 #define _PyBytes_FromStringAndSize(arg1, arg2) \
30 PyString_FromStringAndSize((arg1), (arg2))
31 #define _PyUnicode_AsUTF8(arg) \
32 PyString_AsString(arg)
34 PyMODINIT_FUNC initperf_trace_context(void);
36 #define _PyCapsule_GetPointer(arg1, arg2) \
37 PyCapsule_GetPointer((arg1), (arg2))
38 #define _PyBytes_FromStringAndSize(arg1, arg2) \
39 PyBytes_FromStringAndSize((arg1), (arg2))
40 #define _PyUnicode_AsUTF8(arg) \
43 PyMODINIT_FUNC PyInit_perf_trace_context(void);
46 static struct scripting_context *get_args(PyObject *args, const char *name, PyObject **arg2)
51 if (!PyArg_UnpackTuple(args, name, 1, cnt, &context, arg2))
54 return _PyCapsule_GetPointer(context, NULL);
57 static struct scripting_context *get_scripting_context(PyObject *args)
59 return get_args(args, "context", NULL);
62 static PyObject *perf_trace_context_common_pc(PyObject *obj, PyObject *args)
64 struct scripting_context *c = get_scripting_context(args);
69 return Py_BuildValue("i", common_pc(c));
72 static PyObject *perf_trace_context_common_flags(PyObject *obj,
75 struct scripting_context *c = get_scripting_context(args);
80 return Py_BuildValue("i", common_flags(c));
83 static PyObject *perf_trace_context_common_lock_depth(PyObject *obj,
86 struct scripting_context *c = get_scripting_context(args);
91 return Py_BuildValue("i", common_lock_depth(c));
94 static PyObject *perf_sample_insn(PyObject *obj, PyObject *args)
96 struct scripting_context *c = get_scripting_context(args);
101 if (c->sample->ip && !c->sample->insn_len &&
102 c->al->thread->maps && c->al->thread->maps->machine)
103 script_fetch_insn(c->sample, c->al->thread, c->al->thread->maps->machine);
105 if (!c->sample->insn_len)
106 Py_RETURN_NONE; /* N.B. This is a return statement */
108 return _PyBytes_FromStringAndSize(c->sample->insn, c->sample->insn_len);
111 static PyObject *perf_set_itrace_options(PyObject *obj, PyObject *args)
113 struct scripting_context *c;
114 const char *itrace_options;
118 c = get_args(args, "itrace_options", &str);
122 if (!c->session || !c->session->itrace_synth_opts)
125 if (c->session->itrace_synth_opts->set) {
130 itrace_options = _PyUnicode_AsUTF8(str);
132 retval = itrace_do_parse_synth_opts(c->session->itrace_synth_opts, itrace_options, 0);
134 return Py_BuildValue("i", retval);
137 static PyObject *perf_sample_src(PyObject *obj, PyObject *args, bool get_srccode)
139 struct scripting_context *c = get_scripting_context(args);
140 unsigned int line = 0;
141 char *srcfile = NULL;
142 char *srccode = NULL;
155 srcfile = get_srcline_split(map->dso, map__rip_2objdump(map, addr), &line);
159 srccode = find_sourceline(srcfile, line, &len);
160 result = Py_BuildValue("(sIs#)", srcfile, line, srccode, (Py_ssize_t)len);
162 result = Py_BuildValue("(sI)", srcfile, line);
170 static PyObject *perf_sample_srcline(PyObject *obj, PyObject *args)
172 return perf_sample_src(obj, args, false);
175 static PyObject *perf_sample_srccode(PyObject *obj, PyObject *args)
177 return perf_sample_src(obj, args, true);
180 static PyMethodDef ContextMethods[] = {
181 { "common_pc", perf_trace_context_common_pc, METH_VARARGS,
182 "Get the common preempt count event field value."},
183 { "common_flags", perf_trace_context_common_flags, METH_VARARGS,
184 "Get the common flags event field value."},
185 { "common_lock_depth", perf_trace_context_common_lock_depth,
186 METH_VARARGS, "Get the common lock depth event field value."},
187 { "perf_sample_insn", perf_sample_insn,
188 METH_VARARGS, "Get the machine code instruction."},
189 { "perf_set_itrace_options", perf_set_itrace_options,
190 METH_VARARGS, "Set --itrace options."},
191 { "perf_sample_srcline", perf_sample_srcline,
192 METH_VARARGS, "Get source file name and line number."},
193 { "perf_sample_srccode", perf_sample_srccode,
194 METH_VARARGS, "Get source file name, line number and line."},
195 { NULL, NULL, 0, NULL}
198 #if PY_MAJOR_VERSION < 3
199 PyMODINIT_FUNC initperf_trace_context(void)
201 (void) Py_InitModule("perf_trace_context", ContextMethods);
204 PyMODINIT_FUNC PyInit_perf_trace_context(void)
206 static struct PyModuleDef moduledef = {
207 PyModuleDef_HEAD_INIT,
208 "perf_trace_context", /* m_name */
211 ContextMethods, /* m_methods */
213 NULL, /* m_traverse */
219 mod = PyModule_Create(&moduledef);
220 /* Add perf_script_context to the module so it can be imported */
221 PyObject_SetAttrString(mod, "perf_script_context", Py_None);