blob: 7fca9aac7b3a6ec75b13db21288841da454db5e0 [file] [log] [blame]
Berker Peksag6b571e02016-11-06 21:45:16 +03001.. highlight:: shell-session
2
Łukasz Langaa785c872016-09-09 17:37:37 -07003.. _instrumentation:
4
5===============================================
6Instrumenting CPython with DTrace and SystemTap
7===============================================
8
9:author: David Malcolm
10:author: Łukasz Langa
11
12DTrace and SystemTap are monitoring tools, each providing a way to inspect
13what the processes on a computer system are doing. They both use
14domain-specific languages allowing a user to write scripts which:
15
16 - filter which processes are to be observed
17 - gather data from the processes of interest
18 - generate reports on the data
19
20As of Python 3.6, CPython can be built with embedded "markers", also
21known as "probes", that can be observed by a DTrace or SystemTap script,
22making it easier to monitor what the CPython processes on a system are
23doing.
24
Łukasz Langaa785c872016-09-09 17:37:37 -070025.. impl-detail::
26
27 DTrace markers are implementation details of the CPython interpreter.
28 No guarantees are made about probe compatibility between versions of
29 CPython. DTrace scripts can stop working or work incorrectly without
30 warning when changing CPython versions.
31
32
33Enabling the static markers
34---------------------------
35
36macOS comes with built-in support for DTrace. On Linux, in order to
37build CPython with the embedded markers for SystemTap, the SystemTap
38development tools must be installed.
39
40On a Linux machine, this can be done via::
41
Berker Peksag6b571e02016-11-06 21:45:16 +030042 $ yum install systemtap-sdt-devel
Łukasz Langaa785c872016-09-09 17:37:37 -070043
44or::
45
Berker Peksag6b571e02016-11-06 21:45:16 +030046 $ sudo apt-get install systemtap-sdt-dev
Łukasz Langaa785c872016-09-09 17:37:37 -070047
48
Berker Peksag6b571e02016-11-06 21:45:16 +030049CPython must then be configured ``--with-dtrace``:
50
51.. code-block:: none
Łukasz Langaa785c872016-09-09 17:37:37 -070052
53 checking for --with-dtrace... yes
54
55On macOS, you can list available DTrace probes by running a Python
56process in the background and listing all probes made available by the
57Python provider::
58
59 $ python3.6 -q &
60 $ sudo dtrace -l -P python$! # or: dtrace -l -m python3.6
61
62 ID PROVIDER MODULE FUNCTION NAME
63 29564 python18035 python3.6 _PyEval_EvalFrameDefault function-entry
64 29565 python18035 python3.6 dtrace_function_entry function-entry
65 29566 python18035 python3.6 _PyEval_EvalFrameDefault function-return
66 29567 python18035 python3.6 dtrace_function_return function-return
67 29568 python18035 python3.6 collect gc-done
68 29569 python18035 python3.6 collect gc-start
69 29570 python18035 python3.6 _PyEval_EvalFrameDefault line
70 29571 python18035 python3.6 maybe_dtrace_line line
71
72On Linux, you can verify if the SystemTap static markers are present in
73the built binary by seeing if it contains a ".note.stapsdt" section.
74
Berker Peksag6b571e02016-11-06 21:45:16 +030075::
Łukasz Langaa785c872016-09-09 17:37:37 -070076
77 $ readelf -S ./python | grep .note.stapsdt
78 [30] .note.stapsdt NOTE 0000000000000000 00308d78
79
80If you've built Python as a shared library (with --enable-shared), you
Berker Peksag6b571e02016-11-06 21:45:16 +030081need to look instead within the shared library. For example::
Łukasz Langaa785c872016-09-09 17:37:37 -070082
83 $ readelf -S libpython3.3dm.so.1.0 | grep .note.stapsdt
84 [29] .note.stapsdt NOTE 0000000000000000 00365b68
85
Berker Peksag6b571e02016-11-06 21:45:16 +030086Sufficiently modern readelf can print the metadata::
Łukasz Langaa785c872016-09-09 17:37:37 -070087
88 $ readelf -n ./python
89
90 Displaying notes found at file offset 0x00000254 with length 0x00000020:
91 Owner Data size Description
92 GNU 0x00000010 NT_GNU_ABI_TAG (ABI version tag)
93 OS: Linux, ABI: 2.6.32
94
95 Displaying notes found at file offset 0x00000274 with length 0x00000024:
96 Owner Data size Description
97 GNU 0x00000014 NT_GNU_BUILD_ID (unique build ID bitstring)
98 Build ID: df924a2b08a7e89f6e11251d4602022977af2670
99
100 Displaying notes found at file offset 0x002d6c30 with length 0x00000144:
101 Owner Data size Description
102 stapsdt 0x00000031 NT_STAPSDT (SystemTap probe descriptors)
103 Provider: python
104 Name: gc__start
105 Location: 0x00000000004371c3, Base: 0x0000000000630ce2, Semaphore: 0x00000000008d6bf6
106 Arguments: -4@%ebx
107 stapsdt 0x00000030 NT_STAPSDT (SystemTap probe descriptors)
108 Provider: python
109 Name: gc__done
110 Location: 0x00000000004374e1, Base: 0x0000000000630ce2, Semaphore: 0x00000000008d6bf8
111 Arguments: -8@%rax
112 stapsdt 0x00000045 NT_STAPSDT (SystemTap probe descriptors)
113 Provider: python
114 Name: function__entry
115 Location: 0x000000000053db6c, Base: 0x0000000000630ce2, Semaphore: 0x00000000008d6be8
116 Arguments: 8@%rbp 8@%r12 -4@%eax
117 stapsdt 0x00000046 NT_STAPSDT (SystemTap probe descriptors)
118 Provider: python
119 Name: function__return
120 Location: 0x000000000053dba8, Base: 0x0000000000630ce2, Semaphore: 0x00000000008d6bea
121 Arguments: 8@%rbp 8@%r12 -4@%eax
122
123The above metadata contains information for SystemTap describing how it
124can patch strategically-placed machine code instructions to enable the
125tracing hooks used by a SystemTap script.
126
127
128Static DTrace probes
129--------------------
130
131The following example DTrace script can be used to show the call/return
132hierarchy of a Python script, only tracing within the invocation of
133a function called "start". In other words, import-time function
134invocations are not going to be listed:
135
Berker Peksag6b571e02016-11-06 21:45:16 +0300136.. code-block:: none
Łukasz Langaa785c872016-09-09 17:37:37 -0700137
138 self int indent;
139
140 python$target:::function-entry
141 /copyinstr(arg1) == "start"/
142 {
143 self->trace = 1;
144 }
145
146 python$target:::function-entry
147 /self->trace/
148 {
149 printf("%d\t%*s:", timestamp, 15, probename);
150 printf("%*s", self->indent, "");
151 printf("%s:%s:%d\n", basename(copyinstr(arg0)), copyinstr(arg1), arg2);
152 self->indent++;
153 }
154
155 python$target:::function-return
156 /self->trace/
157 {
158 self->indent--;
159 printf("%d\t%*s:", timestamp, 15, probename);
160 printf("%*s", self->indent, "");
161 printf("%s:%s:%d\n", basename(copyinstr(arg0)), copyinstr(arg1), arg2);
162 }
163
164 python$target:::function-return
165 /copyinstr(arg1) == "start"/
166 {
167 self->trace = 0;
168 }
169
Berker Peksag6b571e02016-11-06 21:45:16 +0300170It can be invoked like this::
Łukasz Langaa785c872016-09-09 17:37:37 -0700171
172 $ sudo dtrace -q -s call_stack.d -c "python3.6 script.py"
173
Berker Peksag6b571e02016-11-06 21:45:16 +0300174The output looks like this:
175
176.. code-block:: none
Łukasz Langaa785c872016-09-09 17:37:37 -0700177
178 156641360502280 function-entry:call_stack.py:start:23
179 156641360518804 function-entry: call_stack.py:function_1:1
180 156641360532797 function-entry: call_stack.py:function_3:9
181 156641360546807 function-return: call_stack.py:function_3:10
182 156641360563367 function-return: call_stack.py:function_1:2
183 156641360578365 function-entry: call_stack.py:function_2:5
184 156641360591757 function-entry: call_stack.py:function_1:1
185 156641360605556 function-entry: call_stack.py:function_3:9
186 156641360617482 function-return: call_stack.py:function_3:10
187 156641360629814 function-return: call_stack.py:function_1:2
188 156641360642285 function-return: call_stack.py:function_2:6
189 156641360656770 function-entry: call_stack.py:function_3:9
190 156641360669707 function-return: call_stack.py:function_3:10
191 156641360687853 function-entry: call_stack.py:function_4:13
192 156641360700719 function-return: call_stack.py:function_4:14
193 156641360719640 function-entry: call_stack.py:function_5:18
194 156641360732567 function-return: call_stack.py:function_5:21
195 156641360747370 function-return:call_stack.py:start:28
196
197
198Static SystemTap markers
199------------------------
200
201The low-level way to use the SystemTap integration is to use the static
202markers directly. This requires you to explicitly state the binary file
203containing them.
204
205For example, this SystemTap script can be used to show the call/return
206hierarchy of a Python script:
207
Berker Peksag6b571e02016-11-06 21:45:16 +0300208.. code-block:: none
Łukasz Langaa785c872016-09-09 17:37:37 -0700209
Benjamin Peterson8166a5d2016-10-18 23:33:03 -0700210 probe process("python").mark("function__entry") {
Łukasz Langaa785c872016-09-09 17:37:37 -0700211 filename = user_string($arg1);
212 funcname = user_string($arg2);
213 lineno = $arg3;
214
215 printf("%s => %s in %s:%d\\n",
216 thread_indent(1), funcname, filename, lineno);
217 }
218
Benjamin Peterson8166a5d2016-10-18 23:33:03 -0700219 probe process("python").mark("function__return") {
Łukasz Langaa785c872016-09-09 17:37:37 -0700220 filename = user_string($arg1);
221 funcname = user_string($arg2);
222 lineno = $arg3;
223
224 printf("%s <= %s in %s:%d\\n",
225 thread_indent(-1), funcname, filename, lineno);
226 }
227
Berker Peksag6b571e02016-11-06 21:45:16 +0300228It can be invoked like this::
Łukasz Langaa785c872016-09-09 17:37:37 -0700229
230 $ stap \
231 show-call-hierarchy.stp \
Benjamin Peterson8166a5d2016-10-18 23:33:03 -0700232 -c "./python test.py"
Łukasz Langaa785c872016-09-09 17:37:37 -0700233
Berker Peksag6b571e02016-11-06 21:45:16 +0300234The output looks like this:
235
236.. code-block:: none
Łukasz Langaa785c872016-09-09 17:37:37 -0700237
238 11408 python(8274): => __contains__ in Lib/_abcoll.py:362
239 11414 python(8274): => __getitem__ in Lib/os.py:425
240 11418 python(8274): => encode in Lib/os.py:490
241 11424 python(8274): <= encode in Lib/os.py:493
242 11428 python(8274): <= __getitem__ in Lib/os.py:426
243 11433 python(8274): <= __contains__ in Lib/_abcoll.py:366
244
245where the columns are:
246
247 - time in microseconds since start of script
248
249 - name of executable
250
251 - PID of process
252
253and the remainder indicates the call/return hierarchy as the script executes.
254
255For a `--enable-shared` build of CPython, the markers are contained within the
256libpython shared library, and the probe's dotted path needs to reflect this. For
257example, this line from the above example::
258
Benjamin Peterson8166a5d2016-10-18 23:33:03 -0700259 probe process("python").mark("function__entry") {
Łukasz Langaa785c872016-09-09 17:37:37 -0700260
261should instead read::
262
Benjamin Peterson8166a5d2016-10-18 23:33:03 -0700263 probe process("python").library("libpython3.6dm.so.1.0").mark("function__entry") {
Łukasz Langaa785c872016-09-09 17:37:37 -0700264
265(assuming a debug build of CPython 3.6)
266
267
268Available static markers
269------------------------
270
271.. I'm reusing the "c:function" type for markers
272
273.. c:function:: function__entry(str filename, str funcname, int lineno)
274
275 This marker indicates that execution of a Python function has begun.
276 It is only triggered for pure-Python (bytecode) functions.
277
278 The filename, function name, and line number are provided back to the
279 tracing script as positional arguments, which must be accessed using
Benjamin Peterson699e2c92016-09-10 17:24:25 -0700280 ``$arg1``, ``$arg2``, ``$arg3``:
Łukasz Langaa785c872016-09-09 17:37:37 -0700281
Benjamin Peterson699e2c92016-09-10 17:24:25 -0700282 * ``$arg1`` : ``(const char *)`` filename, accessible using ``user_string($arg1)``
Łukasz Langaa785c872016-09-09 17:37:37 -0700283
Benjamin Peterson699e2c92016-09-10 17:24:25 -0700284 * ``$arg2`` : ``(const char *)`` function name, accessible using
285 ``user_string($arg2)``
Łukasz Langaa785c872016-09-09 17:37:37 -0700286
Benjamin Peterson699e2c92016-09-10 17:24:25 -0700287 * ``$arg3`` : ``int`` line number
Łukasz Langaa785c872016-09-09 17:37:37 -0700288
289.. c:function:: function__return(str filename, str funcname, int lineno)
290
Benjamin Peterson699e2c92016-09-10 17:24:25 -0700291 This marker is the converse of :c:func:`function__entry`, and indicates that
292 execution of a Python function has ended (either via ``return``, or via an
293 exception). It is only triggered for pure-Python (bytecode) functions.
Łukasz Langaa785c872016-09-09 17:37:37 -0700294
Benjamin Peterson699e2c92016-09-10 17:24:25 -0700295 The arguments are the same as for :c:func:`function__entry`
Łukasz Langaa785c872016-09-09 17:37:37 -0700296
297.. c:function:: line(str filename, str funcname, int lineno)
298
299 This marker indicates a Python line is about to be executed. It is
300 the equivalent of line-by-line tracing with a Python profiler. It is
301 not triggered within C functions.
302
Benjamin Peterson699e2c92016-09-10 17:24:25 -0700303 The arguments are the same as for :c:func:`function__entry`.
Łukasz Langaa785c872016-09-09 17:37:37 -0700304
305.. c:function:: gc__start(int generation)
306
307 Fires when the Python interpreter starts a garbage collection cycle.
Benjamin Peterson699e2c92016-09-10 17:24:25 -0700308 ``arg0`` is the generation to scan, like :func:`gc.collect()`.
Łukasz Langaa785c872016-09-09 17:37:37 -0700309
310.. c:function:: gc__done(long collected)
311
312 Fires when the Python interpreter finishes a garbage collection
Benjamin Peterson699e2c92016-09-10 17:24:25 -0700313 cycle. ``arg0`` is the number of collected objects.
Łukasz Langaa785c872016-09-09 17:37:37 -0700314
315
316SystemTap Tapsets
317-----------------
318
319The higher-level way to use the SystemTap integration is to use a "tapset":
320SystemTap's equivalent of a library, which hides some of the lower-level
321details of the static markers.
322
323Here is a tapset file, based on a non-shared build of CPython:
324
Berker Peksag6b571e02016-11-06 21:45:16 +0300325.. code-block:: none
Łukasz Langaa785c872016-09-09 17:37:37 -0700326
327 /*
328 Provide a higher-level wrapping around the function__entry and
329 function__return markers:
330 \*/
331 probe python.function.entry = process("python").mark("function__entry")
332 {
333 filename = user_string($arg1);
334 funcname = user_string($arg2);
335 lineno = $arg3;
336 frameptr = $arg4
337 }
338 probe python.function.return = process("python").mark("function__return")
339 {
340 filename = user_string($arg1);
341 funcname = user_string($arg2);
342 lineno = $arg3;
343 frameptr = $arg4
344 }
345
346If this file is installed in SystemTap's tapset directory (e.g.
Benjamin Peterson699e2c92016-09-10 17:24:25 -0700347``/usr/share/systemtap/tapset``), then these additional probepoints become
Łukasz Langaa785c872016-09-09 17:37:37 -0700348available:
349
350.. c:function:: python.function.entry(str filename, str funcname, int lineno, frameptr)
351
352 This probe point indicates that execution of a Python function has begun.
353 It is only triggered for pure-python (bytecode) functions.
354
355.. c:function:: python.function.return(str filename, str funcname, int lineno, frameptr)
356
Benjamin Peterson699e2c92016-09-10 17:24:25 -0700357 This probe point is the converse of :c:func:`python.function.return`, and
358 indicates that execution of a Python function has ended (either via
359 ``return``, or via an exception). It is only triggered for pure-python
360 (bytecode) functions.
Łukasz Langaa785c872016-09-09 17:37:37 -0700361
362
363Examples
364--------
365This SystemTap script uses the tapset above to more cleanly implement the
366example given above of tracing the Python function-call hierarchy, without
367needing to directly name the static markers:
368
Berker Peksag6b571e02016-11-06 21:45:16 +0300369.. code-block:: none
Łukasz Langaa785c872016-09-09 17:37:37 -0700370
371 probe python.function.entry
372 {
373 printf("%s => %s in %s:%d\n",
374 thread_indent(1), funcname, filename, lineno);
375 }
376
377 probe python.function.return
378 {
379 printf("%s <= %s in %s:%d\n",
380 thread_indent(-1), funcname, filename, lineno);
381 }
382
383
384The following script uses the tapset above to provide a top-like view of all
385running CPython code, showing the top 20 most frequently-entered bytecode
386frames, each second, across the whole system:
387
Berker Peksag6b571e02016-11-06 21:45:16 +0300388.. code-block:: none
Łukasz Langaa785c872016-09-09 17:37:37 -0700389
390 global fn_calls;
391
392 probe python.function.entry
393 {
394 fn_calls[pid(), filename, funcname, lineno] += 1;
395 }
396
397 probe timer.ms(1000) {
398 printf("\033[2J\033[1;1H") /* clear screen \*/
399 printf("%6s %80s %6s %30s %6s\n",
400 "PID", "FILENAME", "LINE", "FUNCTION", "CALLS")
401 foreach ([pid, filename, funcname, lineno] in fn_calls- limit 20) {
402 printf("%6d %80s %6d %30s %6d\n",
403 pid, filename, lineno, funcname,
404 fn_calls[pid, filename, funcname, lineno]);
405 }
406 delete fn_calls;
407 }
408