]> git.proxmox.com Git - qemu.git/blame - docs/tracing.txt
trace: Provide a generic tracing event descriptor
[qemu.git] / docs / tracing.txt
CommitLineData
81a97d9d
SH
1= Tracing =
2
3== Introduction ==
4
5This document describes the tracing infrastructure in QEMU and how to use it
6for debugging, profiling, and observing execution.
7
8== Quickstart ==
9
101. Build with the 'simple' trace backend:
11
324883aa 12 ./configure --enable-trace-backend=simple
81a97d9d
SH
13 make
14
03727e6a 152. Create a file with the events you want to trace:
81a97d9d 16
03727e6a
L
17 echo bdrv_aio_readv > /tmp/events
18 echo bdrv_aio_writev >> /tmp/events
81a97d9d 19
03727e6a
L
203. Run the virtual machine to produce a trace file:
21
22 qemu -trace events=/tmp/events ... # your normal QEMU invocation
23
244. Pretty-print the binary trace file:
81a97d9d 25
8f44015e 26 ./scripts/simpletrace.py trace-events trace-*
81a97d9d
SH
27
28== Trace events ==
29
7b92e5bc 30There is a set of static trace events declared in the "trace-events" source
81a97d9d
SH
31file. Each trace event declaration names the event, its arguments, and the
32format string which can be used for pretty-printing:
33
4b710a3c
LV
34 qemu_vmalloc(size_t size, void *ptr) "size %zu ptr %p"
35 qemu_vfree(void *ptr) "ptr %p"
81a97d9d 36
7b92e5bc 37The "trace-events" file is processed by the "tracetool" script during build to
81a97d9d
SH
38generate code for the trace events. Trace events are invoked directly from
39source code like this:
40
41 #include "trace.h" /* needed for trace event prototype */
49926043 42
4b710a3c 43 void *qemu_vmalloc(size_t size)
81a97d9d
SH
44 {
45 void *ptr;
4b710a3c
LV
46 size_t align = QEMU_VMALLOC_ALIGN;
47
48 if (size < align) {
49 align = getpagesize();
81a97d9d 50 }
4b710a3c
LV
51 ptr = qemu_memalign(align, size);
52 trace_qemu_vmalloc(size, ptr);
81a97d9d
SH
53 return ptr;
54 }
55
56=== Declaring trace events ===
57
7b92e5bc 58The "tracetool" script produces the trace.h header file which is included by
81a97d9d 59every source file that uses trace events. Since many source files include
7b92e5bc
L
60trace.h, it uses a minimum of types and other header files included to keep the
61namespace clean and compile times and dependencies down.
81a97d9d
SH
62
63Trace events should use types as follows:
64
65 * Use stdint.h types for fixed-size types. Most offsets and guest memory
66 addresses are best represented with uint32_t or uint64_t. Use fixed-size
67 types over primitive types whose size may change depending on the host
68 (32-bit versus 64-bit) so trace events don't truncate values or break
69 the build.
70
71 * Use void * for pointers to structs or for arrays. The trace.h header
72 cannot include all user-defined struct declarations and it is therefore
73 necessary to use void * for pointers to structs.
74
75 * For everything else, use primitive scalar types (char, int, long) with the
76 appropriate signedness.
77
9a85d394
SH
78Format strings should reflect the types defined in the trace event. Take
79special care to use PRId64 and PRIu64 for int64_t and uint64_t types,
913540a3 80respectively. This ensures portability between 32- and 64-bit platforms.
9a85d394 81
81a97d9d
SH
82=== Hints for adding new trace events ===
83
841. Trace state changes in the code. Interesting points in the code usually
85 involve a state change like starting, stopping, allocating, freeing. State
86 changes are good trace events because they can be used to understand the
87 execution of the system.
88
892. Trace guest operations. Guest I/O accesses like reading device registers
90 are good trace events because they can be used to understand guest
91 interactions.
92
933. Use correlator fields so the context of an individual line of trace output
94 can be understood. For example, trace the pointer returned by malloc and
95 used as an argument to free. This way mallocs and frees can be matched up.
96 Trace events with no context are not very useful.
97
984. Name trace events after their function. If there are multiple trace events
99 in one function, append a unique distinguisher at the end of the name.
100
31965ae2
L
101== Generic interface and monitor commands ==
102
103You can programmatically query and control the dynamic state of trace events
104through a backend-agnostic interface:
105
106* trace_print_events
107
108* trace_event_set_state
109 Enables or disables trace events at runtime inside QEMU.
110 The function returns "true" if the state of the event has been successfully
111 changed, or "false" otherwise:
112
113 #include "trace/control.h"
114
115 trace_event_set_state("virtio_irq", true); /* enable */
116 [...]
117 trace_event_set_state("virtio_irq", false); /* disable */
118
119Note that some of the backends do not provide an implementation for this
120interface, in which case QEMU will just print a warning.
121
122This functionality is also provided through monitor commands:
123
124* info trace-events
125 View available trace events and their state. State 1 means enabled, state 0
126 means disabled.
127
128* trace-event NAME on|off
454e202d
MW
129 Enable/disable a given trace event or a group of events having common prefix
130 through wildcard.
31965ae2 131
23d15e86
L
132The "-trace events=<file>" command line argument can be used to enable the
133events listed in <file> from the very beginning of the program. This file must
134contain one event name per line.
135
454e202d
MW
136A basic wildcard matching is supported in both the monitor command "trace
137-event" and the events list file. That means you can enable/disable the events
138having a common prefix in a batch. For example, virtio-blk trace events could
139be enabled using:
140 trace-event virtio_blk_* on
141
8f5a0fb1
SH
142If a line in the "-trace events=<file>" file begins with a '-', the trace event
143will be disabled instead of enabled. This is useful when a wildcard was used
144to enable an entire family of events but one noisy event needs to be disabled.
145
81a97d9d
SH
146== Trace backends ==
147
7b92e5bc 148The "tracetool" script automates tedious trace event code generation and also
81a97d9d
SH
149keeps the trace event declarations independent of the trace backend. The trace
150events are not tightly coupled to a specific trace backend, such as LTTng or
7b92e5bc 151SystemTap. Support for trace backends can be added by extending the "tracetool"
81a97d9d
SH
152script.
153
154The trace backend is chosen at configure time and only one trace backend can
155be built into the binary:
156
157 ./configure --trace-backend=simple
158
159For a list of supported trace backends, try ./configure --help or see below.
160
161The following subsections describe the supported trace backends.
162
163=== Nop ===
164
165The "nop" backend generates empty trace event functions so that the compiler
166can optimize out trace events completely. This is the default and imposes no
167performance penalty.
168
dd215f64
L
169Note that regardless of the selected trace backend, events with the "disable"
170property will be generated with the "nop" backend.
171
b48c20f7
SH
172=== Stderr ===
173
174The "stderr" backend sends trace events directly to standard error. This
175effectively turns trace events into debug printfs.
176
177This is the simplest backend and can be used together with existing code that
178uses DPRINTF().
179
81a97d9d
SH
180=== Simpletrace ===
181
182The "simple" backend supports common use cases and comes as part of the QEMU
183source tree. It may not be as powerful as platform-specific or third-party
184trace backends but it is portable. This is the recommended trace backend
185unless you have specific needs for more advanced backends.
186
8f642117
SH
187The "simple" backend currently does not capture string arguments, it simply
188records the char* pointer value instead of the string that is pointed to.
189
81a97d9d
SH
190==== Monitor commands ====
191
81a97d9d
SH
192* trace-file on|off|flush|set <path>
193 Enable/disable/flush the trace file or set the trace file name.
194
81a97d9d
SH
195==== Analyzing trace files ====
196
197The "simple" backend produces binary trace files that can be formatted with the
7b92e5bc 198simpletrace.py script. The script takes the "trace-events" file and the binary
81a97d9d
SH
199trace:
200
8f44015e 201 ./scripts/simpletrace.py trace-events trace-12345
81a97d9d 202
7b92e5bc 203You must ensure that the same "trace-events" file was used to build QEMU,
81a97d9d
SH
204otherwise trace event declarations may have changed and output will not be
205consistent.
206
207=== LTTng Userspace Tracer ===
208
209The "ust" backend uses the LTTng Userspace Tracer library. There are no
210monitor commands built into QEMU, instead UST utilities should be used to list,
211enable/disable, and dump traces.
b48c20f7
SH
212
213=== SystemTap ===
214
215The "dtrace" backend uses DTrace sdt probes but has only been tested with
216SystemTap. When SystemTap support is detected a .stp file with wrapper probes
217is generated to make use in scripts more convenient. This step can also be
218performed manually after a build in order to change the binary name in the .stp
219probes:
220
221 scripts/tracetool --dtrace --stap \
222 --binary path/to/qemu-binary \
223 --target-type system \
224 --target-arch x86_64 \
225 <trace-events >qemu.stp
b7d66a76
LV
226
227== Trace event properties ==
228
229Each event in the "trace-events" file can be prefixed with a space-separated
230list of zero or more of the following event properties.
231
232=== "disable" ===
233
234If a specific trace event is going to be invoked a huge number of times, this
235might have a noticeable performance impact even when the event is
236programmatically disabled.
237
238In this case you should declare such event with the "disable" property. This
239will effectively disable the event at compile time (by using the "nop" backend),
240thus having no performance impact at all on regular builds (i.e., unless you
241edit the "trace-events" file).
242
243In addition, there might be cases where relatively complex computations must be
244performed to generate values that are only used as arguments for a trace
245function. In these cases you can use the macro 'TRACE_${EVENT_NAME}_ENABLED' to
246guard such computations and avoid its compilation when the event is disabled:
247
248 #include "trace.h" /* needed for trace event prototype */
249
250 void *qemu_vmalloc(size_t size)
251 {
252 void *ptr;
253 size_t align = QEMU_VMALLOC_ALIGN;
254
255 if (size < align) {
256 align = getpagesize();
257 }
258 ptr = qemu_memalign(align, size);
259 if (TRACE_QEMU_VMALLOC_ENABLED) { /* preprocessor macro */
260 void *complex;
261 /* some complex computations to produce the 'complex' value */
262 trace_qemu_vmalloc(size, ptr, complex);
263 }
264 return ptr;
265 }