blob: e01f3a41586735b7b76cd2ca0cd6da5b80c0d0e4 [file] [log] [blame]
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001.\" Copyright (c) 1991, 1992 Paul Kranenburg <pk@cs.few.eur.nl>
2.\" Copyright (c) 1993 Branko Lankester <branko@hacktic.nl>
3.\" Copyright (c) 1993, 1994, 1995, 1996 Rick Sladkey <jrs@world.std.com>
4.\" All rights reserved.
5.\"
6.\" Redistribution and use in source and binary forms, with or without
7.\" modification, are permitted provided that the following conditions
8.\" are met:
9.\" 1. Redistributions of source code must retain the above copyright
10.\" notice, this list of conditions and the following disclaimer.
11.\" 2. Redistributions in binary form must reproduce the above copyright
12.\" notice, this list of conditions and the following disclaimer in the
13.\" documentation and/or other materials provided with the distribution.
14.\" 3. The name of the author may not be used to endorse or promote products
15.\" derived from this software without specific prior written permission.
16.\"
17.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20.\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27.\"
28.\" $Id$
29.\"
30.de CW
31.sp
32.nf
33.ft CW
34..
35.de CE
Wichert Akkerman8829a551999-06-11 13:18:40 +000036.ft R
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000037.fi
38.sp
39..
Dmitry V. Levina7835e62010-03-31 17:26:49 +000040.TH STRACE 1 "2010-03-30"
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000041.SH NAME
42strace \- trace system calls and signals
43.SH SYNOPSIS
44.B strace
45[
Grant Edwards8a082772011-04-07 20:25:40 +000046.B \-CdDffhiqrtttTvxxy
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000047]
48[
49.BI \-a column
50]
51[
52.BI \-e expr
53]
54\&...
55[
56.BI \-o file
57]
58[
59.BI \-p pid
60]
61\&...
62[
Grant Edwards8a082772011-04-07 20:25:40 +000063.BI \-P path
64]
65\&...
66[
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000067.BI \-s strsize
68]
69[
70.BI \-u username
71]
72[
Roland McGrath4417fda2003-01-24 04:31:20 +000073.BI \-E var=val
74]
75\&...
76[
77.BI \-E var
78]
79\&...
80[
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000081.I command
82[
83.I arg
84\&...
85]
86]
87.sp
88.B strace
89.B \-c
90[
Andreas Schwabb87d30c2010-06-11 15:49:36 +020091.B \-D
92]
93[
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000094.BI \-e expr
95]
96\&...
97[
98.BI \-O overhead
99]
100[
101.BI \-S sortby
102]
103[
104.I command
105[
106.I arg
107\&...
108]
109]
110.SH DESCRIPTION
111.IX "strace command" "" "\fLstrace\fR command"
112.LP
113In the simplest case
114.B strace
115runs the specified
116.I command
117until it exits.
118It intercepts and records the system calls which are called
119by a process and the signals which are received by a process.
120The name of each system call, its arguments and its return value
121are printed on standard error or to the file specified with the
122.B \-o
Roland McGratha09353a2008-12-10 06:09:29 +0000123option.
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000124.LP
125.B strace
Nate Sammonsb4aa1131999-03-31 05:59:04 +0000126is a useful diagnostic, instructional, and debugging tool.
Roland McGrath0411b402003-10-22 06:16:32 +0000127System administrators, diagnosticians and trouble-shooters will find
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000128it invaluable for solving problems with
129programs for which the source is not readily available since
130they do not need to be recompiled in order to trace them.
131Students, hackers and the overly-curious will find that
132a great deal can be learned about a system and its system calls by
133tracing even ordinary programs. And programmers will find that
134since system calls and signals are events that happen at the user/kernel
135interface, a close examination of this boundary is very
136useful for bug isolation, sanity checking and
137attempting to capture race conditions.
138.LP
139Each line in the trace contains the system call name, followed
140by its arguments in parentheses and its return value.
141An example from stracing the command ``cat /dev/null'' is:
142.CW
143open("/dev/null", O_RDONLY) = 3
144.CE
145Errors (typically a return value of \-1) have the errno symbol
146and error string appended.
147.CW
148open("/foo/bar", O_RDONLY) = -1 ENOENT (No such file or directory)
149.CE
150Signals are printed as a signal symbol and a signal string.
151An excerpt from stracing and interrupting the command ``sleep 666'' is:
152.CW
153sigsuspend([] <unfinished ...>
154--- SIGINT (Interrupt) ---
155+++ killed by SIGINT +++
156.CE
Jan Kratochvil14256a72008-09-12 08:44:30 +0000157If a system call is being executed and meanwhile another one is being called
158from a different thread/process then
159.B strace
160will try to preserve the order of those events and mark the ongoing call as
Dmitry V. Levina7835e62010-03-31 17:26:49 +0000161being
162.IR unfinished .
163When the call returns it will be marked as
164.IR resumed .
Jan Kratochvil14256a72008-09-12 08:44:30 +0000165.CW
166[pid 28772] select(4, [3], NULL, NULL, NULL <unfinished ...>
167[pid 28779] clock_gettime(CLOCK_REALTIME, {1130322148, 939977000}) = 0
168[pid 28772] <... select resumed> ) = 1 (in [3])
169.CE
170Interruption of a (restartable) system call by a signal delivery is processed
171differently as kernel terminates the system call and also arranges its
172immediate reexecution after the signal handler completes.
173.CW
174read(0, 0x7ffff72cf5cf, 1) = ? ERESTARTSYS (To be restarted)
175--- SIGALRM (Alarm clock) @ 0 (0) ---
176rt_sigreturn(0xe) = 0
177read(0, ""..., 1) = 0
178.CE
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000179Arguments are printed in symbolic form with a passion.
Roland McGrath0411b402003-10-22 06:16:32 +0000180This example shows the shell performing ``>>xyzzy'' output redirection:
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000181.CW
182open("xyzzy", O_WRONLY|O_APPEND|O_CREAT, 0666) = 3
183.CE
184Here the three argument form of open is decoded by breaking down the
185flag argument into its three bitwise-OR constituents and printing the
186mode value in octal by tradition. Where traditional or native
187usage differs from ANSI or POSIX, the latter forms are preferred.
Wichert Akkerman8829a551999-06-11 13:18:40 +0000188In some cases,
189.B strace
190output has proven to be more readable than the source.
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000191.LP
192Structure pointers are dereferenced and the members are displayed
193as appropriate. In all cases arguments are formatted in the most C-like
194fashion possible.
195For example, the essence of the command ``ls \-l /dev/null'' is captured as:
196.CW
197lstat("/dev/null", {st_mode=S_IFCHR|0666, st_rdev=makedev(1, 3), ...}) = 0
198.CE
199Notice how the `struct stat' argument is dereferenced and how each member is
200displayed symbolically. In particular, observe how the st_mode member
201is carefully decoded into a bitwise-OR of symbolic and numeric values.
202Also notice in this example that the first argument to lstat is an input
203to the system call and the second argument is an output. Since output
Wichert Akkerman8829a551999-06-11 13:18:40 +0000204arguments are not modified if the system call fails, arguments may not
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000205always be dereferenced. For example, retrying the ``ls \-l'' example
206with a non-existent file produces the following line:
207.CW
208lstat("/foo/bar", 0xb004) = -1 ENOENT (No such file or directory)
209.CE
210In this case the porch light is on but nobody is home.
211.LP
212Character pointers are dereferenced and printed as C strings.
213Non-printing characters in strings are normally represented by
214ordinary C escape codes.
215Only the first
216.I strsize
217(32 by default) bytes of strings are printed;
218longer strings have an ellipsis appended following the closing quote.
Wichert Akkerman8829a551999-06-11 13:18:40 +0000219Here is a line from ``ls \-l'' where the
220.B getpwuid
221library routine is reading the password file:
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000222.CW
223read(3, "root::0:0:System Administrator:/"..., 1024) = 422
224.CE
225While structures are annotated using curly braces, simple pointers
226and arrays are printed using square brackets with commas separating
227elements. Here is an example from the command ``id'' on a system with
228supplementary group ids:
229.CW
230getgroups(32, [100, 0]) = 2
231.CE
232On the other hand, bit-sets are also shown using square brackets
233but set elements are separated only by a space. Here is the shell
234preparing to execute an external command:
235.CW
236sigprocmask(SIG_BLOCK, [CHLD TTOU], []) = 0
237.CE
238Here the second argument is a bit-set of two signals, SIGCHLD and SIGTTOU.
239In some cases the bit-set is so full that printing out the unset
240elements is more valuable. In that case, the bit-set is prefixed by
241a tilde like this:
242.CW
243sigprocmask(SIG_UNBLOCK, ~[], NULL) = 0
244.CE
245Here the second argument represents the full set of all signals.
246.SH OPTIONS
247.TP 12
248.TP
249.B \-c
Roland McGrath4de04aa2004-08-31 07:47:47 +0000250Count time, calls, and errors for each system call and report a summary on
251program exit. On Linux, this attempts to show system time (CPU time spent
Dmitry V. Levina7835e62010-03-31 17:26:49 +0000252running in the kernel) independent of wall clock time. If
253.B \-c
254is used with
255.B \-f
256or
257.B \-F
258(below), only aggregate totals for all traced processes are kept.
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000259.TP
Dmitry V. Levine3a7ef52010-03-28 19:24:54 +0000260.B \-C
261Like
262.B \-c
263but also print regular output while processes are running.
264.TP
Andreas Schwabb87d30c2010-06-11 15:49:36 +0200265.B \-D
266(Not available on SVR4 and FreeBSD.)
267Run tracer process as a detached grandchild, not as parent of the
268tracee. This reduces the visible effect of
269.B strace
270by keeping the tracee a direct child of the calling process.
271.TP
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000272.B \-d
Wichert Akkerman8829a551999-06-11 13:18:40 +0000273Show some debugging output of
274.B strace
275itself on the standard error.
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000276.TP
277.B \-f
278Trace child processes as they are created by currently traced
Wichert Akkerman8829a551999-06-11 13:18:40 +0000279processes as a result of the
280.BR fork (2)
Roland McGrath41c48222008-07-18 00:25:10 +0000281system call.
282.IP
283On non-Linux platforms the new process is
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000284attached to as soon as its pid is known (through the return value of
Wichert Akkerman8829a551999-06-11 13:18:40 +0000285.BR fork (2)
286in the parent process). This means that such children may run
287uncontrolled for a while (especially in the case of a
288.BR vfork (2)),
289until the parent is scheduled again to complete its
290.RB ( v ) fork (2)
Roland McGrath41c48222008-07-18 00:25:10 +0000291call. On Linux the child is traced from its first instruction with no delay.
Wichert Akkerman8829a551999-06-11 13:18:40 +0000292If the parent process decides to
293.BR wait (2)
294for a child that is currently
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000295being traced, it is suspended until an appropriate child process either
296terminates or incurs a signal that would cause it to terminate (as
297determined from the child's current signal disposition).
Roland McGrath41c48222008-07-18 00:25:10 +0000298.IP
299On SunOS 4.x the tracing of
300.BR vfork s
301is accomplished with some dynamic linking trickery.
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000302.TP
303.B \-ff
304If the
305.B \-o
306.I filename
307option is in effect, each processes trace is written to
308.I filename.pid
309where pid is the numeric process id of each process.
Dmitry V. Levina7835e62010-03-31 17:26:49 +0000310This is incompatible with
311.BR \-c ,
312since no per-process counts are kept.
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000313.TP
314.B \-F
Roland McGrath41c48222008-07-18 00:25:10 +0000315This option is now obsolete and it has the same functionality as
Dmitry V. Levina7835e62010-03-31 17:26:49 +0000316.BR \-f .
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000317.TP
318.B \-h
319Print the help summary.
320.TP
321.B \-i
322Print the instruction pointer at the time of the system call.
323.TP
324.B \-q
325Suppress messages about attaching, detaching etc. This happens
326automatically when output is redirected to a file and the command
327is run directly instead of attaching.
328.TP
329.B \-r
330Print a relative timestamp upon entry to each system call. This
331records the time difference between the beginning of successive
332system calls.
333.TP
334.B \-t
335Prefix each line of the trace with the time of day.
336.TP
337.B \-tt
338If given twice, the time printed will include the microseconds.
339.TP
340.B \-ttt
341If given thrice, the time printed will include the microseconds
342and the leading portion will be printed as the number
343of seconds since the epoch.
344.TP
345.B \-T
346Show the time spent in system calls. This records the time
347difference between the beginning and the end of each system call.
348.TP
349.B \-v
350Print unabbreviated versions of environment, stat, termios, etc.
351calls. These structures are very common in calls and so the default
352behavior displays a reasonable subset of structure members. Use
353this option to get all of the gory details.
354.TP
355.B \-V
Wichert Akkerman8829a551999-06-11 13:18:40 +0000356Print the version number of
357.BR strace .
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000358.TP
359.B \-x
Wichert Akkerman8829a551999-06-11 13:18:40 +0000360Print all non-ASCII strings in hexadecimal string format.
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000361.TP
362.B \-xx
363Print all strings in hexadecimal string format.
364.TP
Grant Edwards8a082772011-04-07 20:25:40 +0000365.B \-y
366Print paths associated with file descriptor arguments.
367.TP
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000368.BI "\-a " column
Wichert Akkerman4dc8a2a1999-12-23 14:20:14 +0000369Align return values in a specific column (default column 40).
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000370.TP
371.BI "\-e " expr
372A qualifying expression which modifies which events to trace
373or how to trace them. The format of the expression is:
Wichert Akkerman8829a551999-06-11 13:18:40 +0000374.RS 15
375.IP
376[\fIqualifier\fB=\fR][\fB!\fR]\fIvalue1\fR[\fB,\fIvalue2\fR]...
377.RE
378.IP
379where
380.I qualifier
381is one of
382.BR trace ,
383.BR abbrev ,
384.BR verbose ,
385.BR raw ,
386.BR signal ,
387.BR read ,
388or
389.B write
390and
391.I value
392is a qualifier-dependent symbol or number. The default
393qualifier is
394.BR trace .
395Using an exclamation mark negates the set of values. For example,
Dmitry V. Levina7835e62010-03-31 17:26:49 +0000396.BR \-e "\ " open
Wichert Akkerman8829a551999-06-11 13:18:40 +0000397means literally
Dmitry V. Levina7835e62010-03-31 17:26:49 +0000398.BR \-e "\ " trace = open
Wichert Akkerman8829a551999-06-11 13:18:40 +0000399which in turn means trace only the
400.B open
401system call. By contrast,
Dmitry V. Levina7835e62010-03-31 17:26:49 +0000402.BR \-e "\ " trace "=!" open
Wichert Akkerman8829a551999-06-11 13:18:40 +0000403means to trace every system call except
404.BR open .
405In addition, the special values
406.B all
407and
408.B none
409have the obvious meanings.
410.IP
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000411Note that some shells use the exclamation point for history
Wichert Akkerman8829a551999-06-11 13:18:40 +0000412expansion even inside quoted arguments. If so, you must escape
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000413the exclamation point with a backslash.
414.TP
Dmitry V. Levina7835e62010-03-31 17:26:49 +0000415\fB\-e\ trace\fR=\fIset\fR
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000416Trace only the specified set of system calls. The
417.B \-c
418option is useful for determining which system calls might be useful
Wichert Akkerman8829a551999-06-11 13:18:40 +0000419to trace. For example,
Dmitry V. Levina7835e62010-03-31 17:26:49 +0000420.BR trace = open,close,read,write
Wichert Akkerman8829a551999-06-11 13:18:40 +0000421means to only
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000422trace those four system calls. Be careful when making inferences
423about the user/kernel boundary if only a subset of system calls
Wichert Akkerman8829a551999-06-11 13:18:40 +0000424are being monitored. The default is
Dmitry V. Levina7835e62010-03-31 17:26:49 +0000425.BR trace = all .
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000426.TP
Dmitry V. Levin1c3031b2011-01-14 17:17:20 +0000427.BR "\-e\ trace" = file
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000428Trace all system calls which take a file name as an argument. You
429can think of this as an abbreviation for
Dmitry V. Levina7835e62010-03-31 17:26:49 +0000430.BR "\-e\ trace" = open , stat , chmod , unlink ,...
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000431which is useful to seeing what files the process is referencing.
432Furthermore, using the abbreviation will ensure that you don't
433accidentally forget to include a call like
434.B lstat
435in the list. Betchya woulda forgot that one.
436.TP
Dmitry V. Levin1c3031b2011-01-14 17:17:20 +0000437.BR "\-e\ trace" = process
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000438Trace all system calls which involve process management. This
439is useful for watching the fork, wait, and exec steps of a process.
440.TP
Dmitry V. Levin1c3031b2011-01-14 17:17:20 +0000441.BR "\-e\ trace" = network
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000442Trace all the network related system calls.
443.TP
Dmitry V. Levin1c3031b2011-01-14 17:17:20 +0000444.BR "\-e\ trace" = signal
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000445Trace all signal related system calls.
446.TP
Dmitry V. Levin1c3031b2011-01-14 17:17:20 +0000447.BR "\-e\ trace" = ipc
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000448Trace all IPC related system calls.
449.TP
Dmitry V. Levin1c3031b2011-01-14 17:17:20 +0000450.BR "\-e\ trace" = desc
Roland McGrath2fe7b132005-07-05 03:25:35 +0000451Trace all file descriptor related system calls.
452.TP
Dmitry V. Levina7835e62010-03-31 17:26:49 +0000453\fB\-e\ abbrev\fR=\fIset\fR
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000454Abbreviate the output from printing each member of large structures.
Wichert Akkerman8829a551999-06-11 13:18:40 +0000455The default is
Dmitry V. Levina7835e62010-03-31 17:26:49 +0000456.BR abbrev = all .
Wichert Akkerman8829a551999-06-11 13:18:40 +0000457The
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000458.B \-v
Wichert Akkerman8829a551999-06-11 13:18:40 +0000459option has the effect of
Dmitry V. Levina7835e62010-03-31 17:26:49 +0000460.BR abbrev = none .
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000461.TP
Dmitry V. Levina7835e62010-03-31 17:26:49 +0000462\fB\-e\ verbose\fR=\fIset\fR
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000463Dereference structures for the specified set of system calls. The
Wichert Akkerman8829a551999-06-11 13:18:40 +0000464default is
Dmitry V. Levina7835e62010-03-31 17:26:49 +0000465.BR verbose = all .
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000466.TP
Dmitry V. Levina7835e62010-03-31 17:26:49 +0000467\fB\-e\ raw\fR=\fIset\fR
Roland McGrath0411b402003-10-22 06:16:32 +0000468Print raw, undecoded arguments for the specified set of system calls.
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000469This option has the effect of causing all arguments to be printed
470in hexadecimal. This is mostly useful if you don't trust the
471decoding or you need to know the actual numeric value of an
472argument.
473.TP
Dmitry V. Levina7835e62010-03-31 17:26:49 +0000474\fB\-e\ signal\fR=\fIset\fR
Wichert Akkerman8829a551999-06-11 13:18:40 +0000475Trace only the specified subset of signals. The default is
Dmitry V. Levina7835e62010-03-31 17:26:49 +0000476.BR signal = all .
Wichert Akkerman8829a551999-06-11 13:18:40 +0000477For example,
Dmitry V. Levina7835e62010-03-31 17:26:49 +0000478.B signal "=!" SIGIO
Wichert Akkerman8829a551999-06-11 13:18:40 +0000479(or
Dmitry V. Levina7835e62010-03-31 17:26:49 +0000480.BR signal "=!" io )
Wichert Akkerman8829a551999-06-11 13:18:40 +0000481causes SIGIO signals not to be traced.
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000482.TP
Dmitry V. Levina7835e62010-03-31 17:26:49 +0000483\fB\-e\ read\fR=\fIset\fR
Wichert Akkerman8829a551999-06-11 13:18:40 +0000484Perform a full hexadecimal and ASCII dump of all the data read from
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000485file descriptors listed in the specified set. For example, to see
Dmitry V. Levina7835e62010-03-31 17:26:49 +0000486all input activity on file descriptors
487.I 3
488and
489.I 5
490use
491\fB\-e\ read\fR=\fI3\fR,\fI5\fR.
Wichert Akkerman8829a551999-06-11 13:18:40 +0000492Note that this is independent from the normal tracing of the
493.BR read (2)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000494system call which is controlled by the option
Dmitry V. Levina7835e62010-03-31 17:26:49 +0000495.BR -e "\ " trace = read .
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000496.TP
Dmitry V. Levina7835e62010-03-31 17:26:49 +0000497\fB\-e\ write\fR=\fIset\fR
Wichert Akkerman8829a551999-06-11 13:18:40 +0000498Perform a full hexadecimal and ASCII dump of all the data written to
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000499file descriptors listed in the specified set. For example, to see
Dmitry V. Levina7835e62010-03-31 17:26:49 +0000500all output activity on file descriptors
501.I 3
502and
503.I 5
504use
505\fB\-e\ write\fR=\fI3\fR,\fI5\fR.
Wichert Akkerman8829a551999-06-11 13:18:40 +0000506Note that this is independent from the normal tracing of the
507.BR write (2)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000508system call which is controlled by the option
Dmitry V. Levina7835e62010-03-31 17:26:49 +0000509.BR -e "\ " trace = write .
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000510.TP
511.BI "\-o " filename
512Write the trace output to the file
513.I filename
514rather than to stderr.
515Use
516.I filename.pid
517if
518.B \-ff
519is used.
520If the argument begins with `|' or with `!' then the rest of the
521argument is treated as a command and all output is piped to it.
522This is convenient for piping the debugging output to a program
523without affecting the redirections of executed programs.
524.TP
525.BI "\-O " overhead
Wichert Akkerman8829a551999-06-11 13:18:40 +0000526Set the overhead for tracing system calls to
527.I overhead
528microseconds.
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000529This is useful for overriding the default heuristic for guessing
530how much time is spent in mere measuring when timing system calls using
531the
532.B \-c
Roland McGrath0411b402003-10-22 06:16:32 +0000533option. The accuracy of the heuristic can be gauged by timing a given
Wichert Akkerman8829a551999-06-11 13:18:40 +0000534program run without tracing (using
535.BR time (1))
536and comparing the accumulated
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000537system call time to the total produced using
Wichert Akkerman8829a551999-06-11 13:18:40 +0000538.BR \-c .
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000539.TP
540.BI "\-p " pid
541Attach to the process with the process
542.SM ID
543.I pid
544and begin tracing.
545The trace may be terminated
546at any time by a keyboard interrupt signal (\c
547.SM CTRL\s0-C).
548.B strace
549will respond by detaching itself from the traced process(es)
550leaving it (them) to continue running.
551Multiple
552.B \-p
553options can be used to attach to up to 32 processes in addition to
554.I command
555(which is optional if at least one
556.B \-p
557option is given).
558.TP
Grant Edwards8a082772011-04-07 20:25:40 +0000559.BI "\-P " path
560Trace only system calls accessing
561.I path.
562Multiple
563.B \-P
564options can be used to specify up to 256 paths.
565.TP
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000566.BI "\-s " strsize
567Specify the maximum string size to print (the default is 32). Note
568that filenames are not considered strings and are always printed in
569full.
570.TP
571.BI "\-S " sortby
572Sort the output of the histogram printed by the
573.B \-c
Roland McGrath0411b402003-10-22 06:16:32 +0000574option by the specified criterion. Legal values are
Wichert Akkerman8829a551999-06-11 13:18:40 +0000575.BR time ,
576.BR calls ,
577.BR name ,
578and
579.B nothing
Dmitry V. Levina7835e62010-03-31 17:26:49 +0000580(default is
Wichert Akkerman8829a551999-06-11 13:18:40 +0000581.BR time ).
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000582.TP
583.BI "\-u " username
Wichert Akkerman8829a551999-06-11 13:18:40 +0000584Run command with the user \s-1ID\s0, group \s-2ID\s0, and
585supplementary groups of
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000586.IR username .
587This option is only useful when running as root and enables the
588correct execution of setuid and/or setgid binaries.
589Unless this option is used setuid and setgid programs are executed
590without effective privileges.
Roland McGrath4417fda2003-01-24 04:31:20 +0000591.TP
Dmitry V. Levina7835e62010-03-31 17:26:49 +0000592\fB\-E\ \fIvar\fR=\fIval\fR
Roland McGrath4417fda2003-01-24 04:31:20 +0000593Run command with
Dmitry V. Levina7835e62010-03-31 17:26:49 +0000594.IR var = val
Roland McGrath4417fda2003-01-24 04:31:20 +0000595in its list of environment variables.
596.TP
597.BI "\-E " var
598Remove
599.IR var
600from the inherited list of environment variables before passing it on to
601the command.
Roland McGratha09353a2008-12-10 06:09:29 +0000602.SH DIAGNOSTICS
603When
604.I command
605exits,
606.B strace
607exits with the same exit status.
608If
609.I command
610is terminated by a signal,
611.B strace
612terminates itself with the same signal, so that
613.B strace
614can be used as a wrapper process transparent to the invoking parent process.
615.LP
616When using
Dmitry V. Levina7835e62010-03-31 17:26:49 +0000617.BR \-p ,
Roland McGratha09353a2008-12-10 06:09:29 +0000618the exit status of
619.B strace
620is zero unless there was an unexpected error in doing the tracing.
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000621.SH "SETUID INSTALLATION"
622If
623.B strace
624is installed setuid to root then the invoking user will be able to
625attach to and trace processes owned by any user.
626In addition setuid and setgid programs will be executed and traced
627with the correct effective privileges.
628Since only users trusted with full root privileges should be allowed
629to do these things,
630it only makes sense to install
631.B strace
632as setuid to root when the users who can execute it are restricted
633to those users who have this trust.
634For example, it makes sense to install a special version of
Wichert Akkerman8829a551999-06-11 13:18:40 +0000635.B strace
636with mode `rwsr-xr--', user
637.B root
638and group
639.BR trace ,
640where members of the
641.B trace
642group are trusted users.
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000643If you do use this feature, please remember to install
Wichert Akkerman8829a551999-06-11 13:18:40 +0000644a non-setuid version of
645.B strace
646for ordinary lusers to use.
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000647.SH "SEE ALSO"
Roland McGrath7f7f4362005-12-02 03:59:35 +0000648.BR ltrace (1),
Wichert Akkerman8829a551999-06-11 13:18:40 +0000649.BR time (1),
Roland McGrath7f7f4362005-12-02 03:59:35 +0000650.BR ptrace (2),
651.BR proc (5)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000652.SH NOTES
653It is a pity that so much tracing clutter is produced by systems
654employing shared libraries.
655.LP
656It is instructive to think about system call inputs and outputs
657as data-flow across the user/kernel boundary. Because user-space
658and kernel-space are separate and address-protected, it is
659sometimes possible to make deductive inferences about process
660behavior using inputs and outputs as propositions.
661.LP
662In some cases, a system call will differ from the documented behavior
Wichert Akkerman8829a551999-06-11 13:18:40 +0000663or have a different name. For example, on System V-derived systems
664the true
665.BR time (2)
666system call does not take an argument and the
667.B stat
668function is called
669.B xstat
670and takes an extra leading argument. These
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000671discrepancies are normal but idiosyncratic characteristics of the
672system call interface and are accounted for by C library wrapper
673functions.
674.LP
675On some platforms a process that has a system call trace applied
676to it with the
677.B \-p
678option will receive a
679.BR \s-1SIGSTOP\s0 .
680This signal may interrupt a system call that is not restartable.
681This may have an unpredictable effect on the process
682if the process takes no action to restart the system call.
683.SH BUGS
684Programs that use the
685.I setuid
686bit do not have
687effective user
688.SM ID
689privileges while being traced.
690.LP
691A traced process ignores
692.SM SIGSTOP
Nate Sammonsb4aa1131999-03-31 05:59:04 +0000693except on SVR4 platforms.
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000694.LP
695A traced process which tries to block SIGTRAP will be sent a SIGSTOP
696in an attempt to force continuation of tracing.
697.LP
698A traced process runs slowly.
699.LP
700Traced processes which are descended from
701.I command
702may be left running after an interrupt signal (\c
703.SM CTRL\s0-C).
704.LP
705On Linux, exciting as it would be, tracing the init process is forbidden.
706.LP
707The
708.B \-i
709option is weakly supported.
710.SH HISTORY
711.B strace
Wichert Akkerman8829a551999-06-11 13:18:40 +0000712The original
713.B strace
714was written by Paul Kranenburg
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000715for SunOS and was inspired by its trace utility.
Wichert Akkerman8829a551999-06-11 13:18:40 +0000716The SunOS version of
717.B strace
718was ported to Linux and enhanced
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000719by Branko Lankester, who also wrote the Linux kernel support.
Wichert Akkerman8829a551999-06-11 13:18:40 +0000720Even though Paul released
721.B strace
7222.5 in 1992,
723Branko's work was based on Paul's
724.B strace
7251.5 release from 1991.
726In 1993, Rick Sladkey merged
727.B strace
7282.5 for SunOS and the second release of
729.B strace
730for Linux, added many of the features of
731.BR truss (1)
732from SVR4, and produced an
733.B strace
734that worked on both platforms. In 1994 Rick ported
735.B strace
736to SVR4 and Solaris and wrote the
737automatic configuration support. In 1995 he ported
738.B strace
739to Irix
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000740and tired of writing about himself in the third person.
Roland McGrath98a3ecf2008-08-28 23:41:57 +0000741.SH BUGS
742The SIGTRAP signal is used internally by the kernel implementation of
743system call tracing. When a traced process receives a SIGTRAP signal not
744associated with tracing, strace will not report that signal correctly.
745This signal is not normally used by programs, but could be via a hard-coded
Dmitry V. Levina7835e62010-03-31 17:26:49 +0000746break instruction or via
747.BR kill (2).
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000748.SH PROBLEMS
749Problems with
750.B strace
Roland McGrath4a9b49a2003-01-14 23:40:55 +0000751should be reported via the Debian Bug Tracking System,
752or to the
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000753.B strace
Dmitry V. Levina7835e62010-03-31 17:26:49 +0000754mailing list at <strace\-devel@lists.sourceforge.net>.