update manual
[ust.git] / doc / manual / manual.texinfo
1 \input texinfo @c -*-texinfo-*-
2 @c %**start of header
3 @setfilename ust.info
4 @settitle LTTng Userspace Tracer (UST) Manual
5 @c %**end of header
6
7 @copying
8 This manual is for program, version version.
9
10 Copyright @copyright{} copyright-owner.
11
12 @quotation
13 Permission is granted to ...
14 @end quotation
15 @end copying
16
17 @titlepage
18 @title LTTng Userspace Tracer (UST) Manual
19 @c @subtitle subtitle-if-any
20 @c @subtitle second-subtitle
21 @c @author author
22
23 @c The following two commands
24 @c start the copyright page.
25 @c @page
26 @c @vskip 0pt plus 1filll
27 @c @insertcopying
28
29 @c Published by ...
30 @end titlepage
31
32 @c So the toc is printed at the start.
33 @contents
34
35 @ifnottex
36 @node Top
37 @top LTTng Userspace Tracer
38
39 This manual is for UST 0.4.
40 @end ifnottex
41
42 @menu
43 * Overview::
44 * Installation::
45 * Quick start::
46 * Instrumenting an application::
47 * Recording a trace::
48 * Viewing traces::
49 * Performance::
50 * Resource Usage::
51 @c * Copying:: Your rights and freedoms.
52 @end menu
53
54 @node Overview
55 @chapter Overview
56
57 @menu
58 * What is UST?::
59 * License::
60 * Supported platforms::
61 @end menu
62
63 @node What is UST?
64 @section What is UST?
65
66 The LTTng Userspace Tracer (UST) is a library accompanied by a set of tools to
67 trace userspace code.
68
69 Code may be instrumented with either markers or tracepoints. A highly efficient
70 lockless tracer records these events to a trace buffers. These buffers are reaped
71 by a deamon which writes trace data to disk.
72
73 High performance is achieved by the use of lockless buffering algorithms, RCU and
74 per-cpu buffers. In addition, special care is taken to minize cache impact.
75
76 @node License
77 @section License
78 The LTTng Userspace Tracer is intended to be linkable to open source software
79 as well as to proprietary applications. This was accomplished by licensing
80 the code that needs to be linked to the traced program as @acronym{LGPL}.
81
82 Components licensed as LGPL v2.1:
83 @itemize @bullet
84 @item libust
85 @item libinterfork
86 @item libustcomm
87 @end itemize
88
89 Components licensed as GPL v2:
90 @itemize @bullet
91 @item ustctl
92 @item libustcmd
93 @item ustd
94 @end itemize
95
96 @node Supported platforms
97 @section Supported platforms
98
99 UST can currently trace applications running on Linux, on the x86-32, x86-64
100 and PowerPC 32 architectures.
101
102 @node Installation
103 @chapter Installation
104
105 The LTTng userspace tracer is a library and a set of userspace tools.
106
107 The following packages are required:
108
109 @itemize @bullet
110 @item
111 ust
112
113 This contains the tracing library, the ustd daemon, trace control tools
114 and other helper tools.
115
116 Repository: @url{http://git.dorsal.polymtl.ca}
117
118 @item
119 liburcu
120
121 This is the userspace read-copy update library by Mathieu Desnoyers.
122
123 Available in Debian as package liburcu-dev.
124
125 Home page: @url{http://lttng.org/urcu}
126
127 @item
128 LTTV
129
130 LTTV is a graphical (and text) viewer for LTTng traces.
131
132 Home page: @url{http://lttng.org}
133
134 @end itemize
135
136 Liburcu should be installed first. UST may then be compiled and installed. LTTV
137 has no dependency on the other packages; it may therefore be installed on a
138 system which does not have UST installed.
139
140 Refer to the README in each of these packages for installation instructions.
141
142 @c @menu
143 @c @end menu
144
145 @node Quick start
146 @chapter Quick start
147
148 First, instrument a program with a marker.
149
150 @example
151 @verbatim
152
153 #include <ust/marker.h>
154
155 int main(int argc, char **argv)
156 {
157 int v;
158 char *st;
159
160 /* ... set values of v and st ... */
161
162 /* a marker: */
163 trace_mark(ust, myevent, "firstarg %d secondarg %s", v, st);
164
165 /* a marker without arguments: */
166 trace_mark(ust, myotherevent, MARK_NOARGS);
167
168 return 0;
169 }
170
171 @end verbatim
172 @end example
173
174 Then compile it in the regular way, linking it with libust. For example:
175
176 @example
177 gcc -o foo -lust foo.c
178 @end example
179
180 Run the program with @command{usttrace}. The @command{usttrace} output says where the trace
181 was written.
182
183 @example
184 usttrace ./foo
185 @end example
186
187 Finally, open the trace in LTTV.
188
189 @example
190 lttv-gui -t /path/to/trace
191 @end example
192
193 The trace can also be dumped as text in the console:
194
195 @example
196 lttv -m textDump -t /path/to/trace
197 @end example
198
199 @node Instrumenting an application
200 @chapter Instrumenting an application
201
202 In order to record a trace of events occurring in a application, the
203 application must be instrumented. Instrumentation points resemble function
204 calls. When the program reaches an instrumentation point, an event is
205 generated.
206
207 There are no limitations on the type of code that may be instrumented.
208 Multi-threaded programs may be instrumented without problem. Signal handlers
209 may be instrumented as well.
210
211 There are two APIs to instrument programs: markers and tracepoints. Markers are
212 quick to add and are usually used for temporary instrumentation. Tracepoints
213 provide a way to instrument code more cleanly and are suited for permanent
214 instrumentation.
215
216 In addition to executable programs, shared libraries may also be instrumented
217 with the methods described in this chapter.
218
219 @menu
220 * Markers::
221 * Tracepoints::
222 @end menu
223
224 @node Markers
225 @section Markers
226
227 Adding a marker is simply a matter of inserting one line in the program.
228
229 @example
230 @verbatim
231 #include <ust/marker.h>
232
233 int main(int argc, char **argv)
234 {
235 int v;
236 char *st;
237
238 /* ... set values of v and st ... */
239
240 /* a marker: */
241 trace_mark(main, myevent, "firstarg %d secondarg %s", v, st);
242
243 /* another marker without arguments: */
244 trace_mark(main, myotherevent, MARK_NOARGS);
245
246 return 0;
247 }
248 @end verbatim
249 @end example
250
251 The invocation of the trace_mark() macro requires at least 3 arguments. The
252 first, here "main", is the name of the event category. It is also the name of
253 the channel the event will go in. The second, here "myevent" is the name of the
254 event. The third is a format string that announces the names and the types of
255 the event arguments. Its format resembles that of a printf() format string; it
256 is described thoroughly in Appendix x.
257
258 A given Marker may appear more than once in the same program. Other Markers may
259 have the same name and a different format string, although this might induce
260 some confusion at analysis time.
261
262 @node Tracepoints
263 @section Tracepoints
264
265 The Tracepoints API uses the Markers, but provides a higher-level abstraction.
266 Whereas the markers API provides limited type checking, the Tracepoints API
267 provides more thorough type checking and discharges from the need to insert
268 format strings directly in the code and to have format strings appear more than
269 once if a given marker is reused.
270
271 @quotation Note
272 Although this example uses @emph{mychannel} as the channel, the
273 only channel name currently supported with early tracing is @strong{ust}. The
274 @command{usttrace} tool always uses the early tracing mode. When using manual
275 mode without early tracing, any channel name may be used.
276 @end quotation
277
278 A function instrumented with a tracepoint looks like this:
279
280 @example
281 @verbatim
282 #include "tp.h"
283
284 void function()
285 {
286 int v;
287 char *st;
288
289 /* ... set values of v and st ... */
290
291 /* a tracepoint: */
292 trace_mychannel_myevent(v, st);
293 }
294 @end verbatim
295 @end example
296
297 Another file, here tp.h, contains declarations for the tracepoint.
298
299 @example
300 @verbatim
301 #include <ust/tracepoint.h>
302
303 DECLARE_TRACE(mychannel_myevent, TP_PROTO(int v, char *st),
304 TP_ARGS(v, st));
305 @end verbatim
306 @end example
307
308 A third file, here tp.c, contains definitions for the tracepoint.
309
310 @example
311 @verbatim
312 #include <ust/marker.h>
313 #include "tp.h"
314
315 DEFINE_TRACE(mychannel_myevent);
316
317 void mychannel_myevent_probe(int v, char *st)
318 {
319 trace_mark(mychannel, myevent, "v %d st %s", v, st);
320 }
321
322 static void __attribute__((constructor)) init()
323 {
324 register_trace_mychannel_myevent(mychannel_myevent_probe);
325 }
326 @end verbatim
327 @end example
328
329 Here, tp.h and tp.c could contain declarations and definitions for other
330 tracepoints. The constructor would contain other register_* calls.
331
332 @node Recording a trace
333 @chapter Recording a trace
334
335 @menu
336 * Using @command{usttrace}::
337 * Setting up the recording manually::
338 * Using early tracing::
339 * Crash recovery::
340 * Tracing across @code{fork()} and @code{clone()}::
341 * Tracing programs and libraries that were not linked to libust::
342 @end menu
343
344 @node Using @command{usttrace}
345 @section Using @command{usttrace}
346
347 The simplest way to record a trace is to use the @command{usttrace} script. An
348 example is given in the quickstart above.
349
350 The @command{usttrace} script automatically:
351 @itemize @bullet
352 @item creates a daemon
353 @item enables all markers
354 @item runs the command specified on the command line
355 @item after the command ends, prints the location where the trace was saved
356 @end itemize
357
358 Each subdirectory of the save location contains the trace of one process that
359 was generated by the command. The name of a subdirectory consists in the the PID
360 of the process, followed by the timestamp of its creation.
361
362 The save location also contains logs of the tracing.
363
364 When using @command{usttrace}, the early tracing is always active, which means
365 that the tracing is guaranteed to be started by the time the process enters its
366 main() function.
367
368 Several @command{usttrace}'s may be run simultaneously without risk of
369 conflict. This facilitates the use of the tracer by idependent users on a
370 system. Each instance of @command{usttrace} starts its own daemon which
371 collects the events of the processes it creates.
372
373 @node Setting up the recording manually
374 @section Setting up the recording manually
375
376 Instead of using @command{usttrace}, a trace may be recorded on an already
377 running process.
378
379 First the daemon must be started.
380
381 @example
382 @verbatim
383 # Make sure the directory for the communication sockets exists.
384 $ mkdir /tmp/ustsocks
385
386 # Make sure the directory where ustd will write the trace exists.
387 $ mkdir /tmp/trace
388
389 # Start the daemon
390 $ ustd
391
392 # We assume the program we want to trace is already running and that
393 # it has pid 1234.
394
395 # List the available markers
396 $ ustctl --list-markers 1234
397 # A column indicates 0 for an inactive marker and 1 for an active marker.
398
399 # Enable a marker
400 $ ustctl --enable-marker ust/mymark 1234
401
402 # Create a trace
403 $ ustctl --create-trace 1234
404
405 # Start tracing
406 $ ustctl --start-trace 1234
407
408 # Do things...
409
410 # Stop tracing
411 $ ustctl --stop-trace 1234
412
413 # Destroy the trace
414 $ ustctl --destroy-trace 1234
415 @end verbatim
416 @end example
417
418 For more information about the manual mode, see the ustctl(1) man page.
419
420 @node Using early tracing
421 @section Using early tracing
422
423 Early tracing consists in starting the tracing as early as possible in the
424 program, so no events are lost between program start and the point where the
425 command to start the tracing is given. When using early tracing, it is
426 guaranteed that by the time the traced program enters its @code{main()}
427 function, the tracing will be started.
428
429 When using @command{usttrace}, the early tracing is always active.
430
431 When using the manual mode (@command{ustctl}), early tracing is enabled using
432 environment variables. Setting @env{UST_TRACE} to @code{1}, enables early
433 tracing, while setting @env{UST_AUTOPROBE} to @code{1} enables all markers
434 automatically.
435
436
437 @node Crash recovery
438 @section Crash recovery
439
440 When a process being traced crashes, the daemon is able to recover all the
441 events in its buffers that were successfully commited. This is possible because
442 the buffers are in a shared memory segment which remains available to the
443 daemon even after the termination of the traced process.
444
445 @node Tracing across @code{fork()} and @code{clone()}
446 @section Tracing across @code{fork()} and @code{clone()}
447
448 Tracing across @code{clone()} when the @code{CLONE_VM} flag is specified is
449 supported without any particular action.
450
451 When @code{clone()} is called without @code{CLONE_VM} or @code{fork()} is
452 called, a new address space is created and the tracer must be notified to
453 create new buffers for it.
454
455 This can be done automatically, by @env{LD_PRELOAD}'ing @file{libinterfork.so}.
456 This library intercepts calls to @code{fork()} and informs the tracer it is
457 being called. When using @command{usttrace}, this is accomplied by specifying
458 the @option{-f} command line argument.
459
460 Alternatively, the program can call @code{ust_before_fork()} before calling
461 @code{fork()} or @code{clone()} with @code{CLONE_VM}. After the call,
462 @code{ust_after_fork_parent()} must be called in the parent process and
463 @code{ust_after_fork_child()} must be called in the child process.
464
465
466 @node Tracing programs and libraries that were not linked to libust
467 @section Tracing programs and libraries that were not linked to libust
468
469 Some programs need to be traced even though they were not linked to libust
470 either because they were not instrumented or because it was not practical.
471
472 An executable that is not instrumented can still yield interesting traces when
473 at least one of its dynamic libraries is instrumented. It is also possible to
474 trace certain function calls by intercepting them with a specially crafted
475 library that is linked with @env{LD_PRELOAD} at program start.
476
477 In any case, a program that was not linked to libust at compile time must be
478 linked to it at run time with @env{LD_PRELOAD}. This can be accomplished with
479 @command{usttrace}'s @option{-l} option. It can also be done by setting the
480 @env{LD_PRELOAD} environment variable on the command line. For example:
481
482 @example
483 @verbatim
484 # Run ls with usttrace, LD_PRELOAD'ing libust
485 # (assuming one of the libraries used by ls is instrumented).
486 $ usttrace -l ls
487
488 # Run ls, manually adding the LD_PRELOAD.
489 $ LD_PRELOAD=/usr/local/lib/libust.so.0 ls
490 @end verbatim
491 @end example
492
493
494 @node Performance
495 @chapter Performance
496
497 Todo.
498
499 @node Viewing traces
500 @chapter Viewing traces
501
502 Traces may be viewed with LTTV. An example of command for launching LTTV is
503 given in the quickstart.
504
505 @menu
506 * Viewing multiple traces::
507 * Combined kernel-userspace tracing::
508 @end menu
509
510 @node Viewing multiple traces
511 @section Viewing multiple traces
512
513 When tracing multi-process applications or several applications simultaneously,
514 more than one trace will be obtained. LTTV can open and display all these
515 traces simultaneously.
516
517 @node Combined kernel-userspace tracing
518 @section Combined kernel-userspace tracing
519
520 In addition to multiple userspace traces, LTTV can open a kernel trace recorded
521 with the LTTng kernel tracer. This provides events that enable the rendering of
522 the Control Flow View and the Resource View.
523
524 When doing so, it is necessary to use the same time source for the kernel
525 tracer as well as the userspace tracer. Currently, the recommended method is to
526 use the timestamp counter for both. The TSC can however only be used on architectures
527 where it is synchronized across cores.
528
529 @node Resource Usage
530 @chapter Resource Usage
531
532 The purpose of this section is to give an overview of the resource usage of libust. For
533 a developer, knowing this can be important: because libust is linked with applications, it
534 needs to share some resources with it. Some applications may make some assumptions that are in
535 conflict with libust's usage of resources.
536
537 In practice however, libust is designed to be transparent and is compatible
538 with the vast majority of applications. This means no changes are required in
539 the application (or library) being linked to libust.
540
541 Libust is initialized by a constructor, which by definition runs before the main() function
542 of the application starts. This constructor creates a thread called the @emph{listener thread}.
543 The listener thread initializes a named socket and waits for connections for ustd or ustctl.
544
545 Libust-specific code may:
546 @itemize @bullet
547 @item use @code{malloc()} and @code{free()}
548 @item map shared memory segment in the process adress space
549 @item intercept some library calls, specifically @code{fork()} and @code{clone()}
550 @item do interprocess communication with the daemon or ustctl
551 @item create and open named sockets
552
553 @end itemize
554
555 It will not:
556 @itemize @bullet
557 @item handle any signal (all signals are blocked in the listener thread)
558 @item change any process-wide setting that could confuse the application
559 @end itemize
560
561
562 @bye
This page took 0.041229 seconds and 4 git commands to generate.