]> granicus.if.org Git - strace/blob - strace.1.in
Update ioctl entries from linux v4.18
[strace] / strace.1.in
1 .\" 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 .\" Copyright (c) 1996-2017 The strace developers.
5 .\" All rights reserved.
6 .\"
7 .\" Redistribution and use in source and binary forms, with or without
8 .\" modification, are permitted provided that the following conditions
9 .\" are met:
10 .\" 1. Redistributions of source code must retain the above copyright
11 .\"    notice, this list of conditions and the following disclaimer.
12 .\" 2. Redistributions in binary form must reproduce the above copyright
13 .\"    notice, this list of conditions and the following disclaimer in the
14 .\"    documentation and/or other materials provided with the distribution.
15 .\" 3. The name of the author may not be used to endorse or promote products
16 .\"    derived from this software without specific prior written permission.
17 .\"
18 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19 .\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20 .\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21 .\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22 .\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23 .\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 .\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 .\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27 .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 .de CW
29 .sp
30 .in +4n
31 .nf
32 .ft CW
33 ..
34 .de CE
35 .ft R
36 .fi
37 .in
38 .sp
39 ..
40 .\" Like .OP, but with ellipsis at the end in order to signify that option
41 .\" can be provided multiple times. Based on .OP definition in groff's
42 .\" an-ext.tmac.
43 .de OM
44 .  ie \\n(.$-1 \
45 .    RI "[\fB\\$1\fP" "\ \\$2" "]...\&"
46 .  el \
47 .    RB "[" "\\$1" "]...\&"
48 ..
49 .\" Required option.
50 .de OR
51 .  ie \\n(.$-1 \
52 .    RI "\fB\\$1\fP" "\ \\$2"
53 .  el \
54 .    BR "\\$1"
55 ..
56 .TH STRACE 1 "@MANPAGE_DATE@" "strace @VERSION@"
57 .SH NAME
58 strace \- trace system calls and signals
59 .SH SYNOPSIS
60 .SY strace
61 .if '@ENABLE_STACKTRACE_TRUE@'#' .ig end_unwind_opt
62 .OP \-ACdffhikqrtttTvVxxy
63 .end_unwind_opt
64 .if '@ENABLE_STACKTRACE_FALSE@'#' .ig end_no_unwind_opt
65 .OP \-ACdffhiqrtttTvVxxy
66 .end_no_unwind_opt
67 .OP \-I n
68 .OP \-b execve
69 .OM \-e expr
70 .OP \-a column
71 .OP \-o file
72 .OP \-s strsize
73 .OP \-X format
74 .OM \-P path
75 .OM \-p pid
76 .BR "" {
77 .OR \-p pid
78 .BR "" |
79 .OP \-D
80 .OM \-E var\fR[=\fIval\fR]
81 .OP \-u username
82 .IR command " [" args ]
83 .BR "" }
84 .YS
85 .SY strace
86 .B \-c
87 .OP \-df
88 .OP \-I n
89 .OP \-b execve
90 .OM \-e expr
91 .OP \-O overhead
92 .OP \-S sortby
93 .OM \-P path
94 .OM \-p pid
95 .BR "" {
96 .OR \-p pid
97 .BR "" |
98 .OP \-D
99 .OM \-E var\fR[=\fIval\fR]
100 .OP -u username
101 .IR command " [" args ]
102 .BR "" }
103 .YS
104
105 .SH DESCRIPTION
106 .IX "strace command" "" "\fLstrace\fR command"
107 .LP
108 In the simplest case
109 .B strace
110 runs the specified
111 .I command
112 until it exits.
113 It intercepts and records the system calls which are called
114 by a process and the signals which are received by a process.
115 The name of each system call, its arguments and its return value
116 are printed on standard error or to the file specified with the
117 .B \-o
118 option.
119 .LP
120 .B strace
121 is a useful diagnostic, instructional, and debugging tool.
122 System administrators, diagnosticians and trouble-shooters will find
123 it invaluable for solving problems with
124 programs for which the source is not readily available since
125 they do not need to be recompiled in order to trace them.
126 Students, hackers and the overly-curious will find that
127 a great deal can be learned about a system and its system calls by
128 tracing even ordinary programs.  And programmers will find that
129 since system calls and signals are events that happen at the user/kernel
130 interface, a close examination of this boundary is very
131 useful for bug isolation, sanity checking and
132 attempting to capture race conditions.
133 .LP
134 Each line in the trace contains the system call name, followed
135 by its arguments in parentheses and its return value.
136 An example from stracing the command "cat /dev/null" is:
137 .CW
138 open("/dev/null", O_RDONLY) = 3
139 .CE
140 Errors (typically a return value of \-1) have the errno symbol
141 and error string appended.
142 .CW
143 open("/foo/bar", O_RDONLY) = \-1 ENOENT (No such file or directory)
144 .CE
145 Signals are printed as signal symbol and decoded siginfo structure.
146 An excerpt from stracing and interrupting the command "sleep 666" is:
147 .CW
148 sigsuspend([] <unfinished ...>
149 --- SIGINT {si_signo=SIGINT, si_code=SI_USER, si_pid=...} ---
150 +++ killed by SIGINT +++
151 .CE
152 If a system call is being executed and meanwhile another one is being called
153 from a different thread/process then
154 .B strace
155 will try to preserve the order of those events and mark the ongoing call as
156 being
157 .IR unfinished .
158 When the call returns it will be marked as
159 .IR resumed .
160 .CW
161 [pid 28772] select(4, [3], NULL, NULL, NULL <unfinished ...>
162 [pid 28779] clock_gettime(CLOCK_REALTIME, {1130322148, 939977000}) = 0
163 [pid 28772] <... select resumed> )      = 1 (in [3])
164 .CE
165 Interruption of a (restartable) system call by a signal delivery is processed
166 differently as kernel terminates the system call and also arranges its
167 immediate reexecution after the signal handler completes.
168 .CW
169 read(0, 0x7ffff72cf5cf, 1)              = ? ERESTARTSYS (To be restarted)
170 --- SIGALRM ... ---
171 rt_sigreturn(0xe)                       = 0
172 read(0, "", 1)                          = 0
173 .CE
174 Arguments are printed in symbolic form with passion.
175 This example shows the shell performing ">>xyzzy" output redirection:
176 .CW
177 open("xyzzy", O_WRONLY|O_APPEND|O_CREAT, 0666) = 3
178 .CE
179 Here, the third argument of
180 .B open
181 is decoded by breaking down the
182 flag argument into its three bitwise-OR constituents and printing the
183 mode value in octal by tradition.  Where the traditional or native
184 usage differs from ANSI or POSIX, the latter forms are preferred.
185 In some cases,
186 .B strace
187 output is proven to be more readable than the source.
188 .LP
189 Structure pointers are dereferenced and the members are displayed
190 as appropriate.  In most cases, arguments are formatted in the most C-like
191 fashion possible.
192 For example, the essence of the command "ls \-l /dev/null" is captured as:
193 .CW
194 lstat("/dev/null", {st_mode=S_IFCHR|0666, st_rdev=makedev(1, 3), ...}) = 0
195 .CE
196 Notice how the 'struct stat' argument is dereferenced and how each member is
197 displayed symbolically.  In particular, observe how the
198 .B st_mode
199 member is carefully decoded into a bitwise-OR of symbolic and numeric values.
200 Also notice in this example that the first argument to
201 .B lstat
202 is an input to the system call and the second argument is an output.
203 Since output arguments are not modified if the system call fails, arguments may
204 not always be dereferenced.  For example, retrying the "ls \-l" example
205 with a non-existent file produces the following line:
206 .CW
207 lstat("/foo/bar", 0xb004) = \-1 ENOENT (No such file or directory)
208 .CE
209 In this case the porch light is on but nobody is home.
210 .LP
211 Syscalls unknown to
212 .B strace
213 are printed raw, with the unknown system call number printed in hexadecimal form
214 and prefixed with "syscall_":
215 .CW
216 syscall_0xbad(0x1, 0x2, 0x3, 0x4, 0x5, 0x6) = -1 ENOSYS (Function not implemented)
217 .CE
218 .LP
219 Character pointers are dereferenced and printed as C strings.
220 Non-printing characters in strings are normally represented by
221 ordinary C escape codes.
222 Only the first
223 .I strsize
224 (32 by default) bytes of strings are printed;
225 longer strings have an ellipsis appended following the closing quote.
226 Here is a line from "ls \-l" where the
227 .B getpwuid
228 library routine is reading the password file:
229 .CW
230 read(3, "root::0:0:System Administrator:/"..., 1024) = 422
231 .CE
232 While structures are annotated using curly braces, simple pointers
233 and arrays are printed using square brackets with commas separating
234 elements.  Here is an example from the command "id" on a system with
235 supplementary group ids:
236 .CW
237 getgroups(32, [100, 0]) = 2
238 .CE
239 On the other hand, bit-sets are also shown using square brackets
240 but set elements are separated only by a space.  Here is the shell,
241 preparing to execute an external command:
242 .CW
243 sigprocmask(SIG_BLOCK, [CHLD TTOU], []) = 0
244 .CE
245 Here, the second argument is a bit-set of two signals,
246 .BR SIGCHLD " and " SIGTTOU .
247 In some cases, the bit-set is so full that printing out the unset
248 elements is more valuable.  In that case, the bit-set is prefixed by
249 a tilde like this:
250 .CW
251 sigprocmask(SIG_UNBLOCK, ~[], NULL) = 0
252 .CE
253 Here, the second argument represents the full set of all signals.
254 .SH OPTIONS
255 .SS Output format
256 .TP 12
257 .BI "\-a " column
258 Align return values in a specific column (default column 40).
259 .TP
260 .B \-i
261 Print the instruction pointer at the time of the system call.
262 .if '@ENABLE_STACKTRACE_TRUE@'#' .ig end_unwind
263 .TP
264 .B \-k
265 Print the execution stack trace of the traced processes after each system call.
266 .end_unwind
267 .TP
268 .BI "\-o " filename
269 Write the trace output to the file
270 .I filename
271 rather than to stderr.
272 .IR filename . pid
273 form is used if
274 .B \-ff
275 option is supplied.
276 If the argument begins with '|' or '!', the rest of the
277 argument is treated as a command and all output is piped to it.
278 This is convenient for piping the debugging output to a program
279 without affecting the redirections of executed programs.
280 The latter is not compatible with
281 .B \-ff
282 option currently.
283 .TP
284 .B \-A
285 Open the file provided in the
286 .B \-o
287 option in append mode.
288 .TP
289 .B \-q
290 Suppress messages about attaching, detaching etc.  This happens
291 automatically when output is redirected to a file and the command
292 is run directly instead of attaching.
293 .TP
294 .B \-qq
295 If given twice, suppress messages about process exit status.
296 .TP
297 .B \-r
298 Print a relative timestamp upon entry to each system call.  This
299 records the time difference between the beginning of successive
300 system calls.
301 Note that since
302 .B \-r
303 option uses the monotonic clock time for measuring time difference and not the
304 wall clock time, its measurements can differ from the difference in time
305 reported by the
306 .B \-t
307 option.
308 .TP
309 .BI "\-s " strsize
310 Specify the maximum string size to print (the default is 32).  Note
311 that filenames are not considered strings and are always printed in
312 full.
313 .TP
314 .B \-t
315 Prefix each line of the trace with the wall clock time.
316 .TP
317 .B \-tt
318 If given twice, the time printed will include the microseconds.
319 .TP
320 .B \-ttt
321 If given thrice, the time printed will include the microseconds
322 and the leading portion will be printed as the number
323 of seconds since the epoch.
324 .TP
325 .B \-T
326 Show the time spent in system calls.  This records the time
327 difference between the beginning and the end of each system call.
328 .TP
329 .B \-x
330 Print all non-ASCII strings in hexadecimal string format.
331 .TP
332 .B \-xx
333 Print all strings in hexadecimal string format.
334 .TP
335 .BI "\-X " format
336 Set the format for printing of named constants and flags.
337 Supported
338 .I format
339 values are:
340 .RS
341 .TP 10
342 .B raw
343 Raw number output, without decoding.
344 .TP
345 .B abbrev
346 Output a named constant or a set of flags instead of the raw number if they are
347 found.
348 This is the default
349 .B strace
350 behaviour.
351 .TP
352 .B verbose
353 Output both the raw value and the decoded string (as a comment).
354 .RE
355 .TP
356 .B \-y
357 Print paths associated with file descriptor arguments.
358 .TP
359 .B \-yy
360 Print protocol specific information associated with socket file descriptors,
361 and block/character device number associated with device file descriptors.
362 .SS Statistics
363 .TP 12
364 .B \-c
365 Count time, calls, and errors for each system call and report a summary on
366 program exit, suppressing the regular output.
367 This attempts to show system time (CPU time spent running
368 in the kernel) independent of wall clock time.  If
369 .B \-c
370 is used with
371 .BR \-f ,
372 only aggregate totals for all traced processes are kept.
373 .TP
374 .B \-C
375 Like
376 .B \-c
377 but also print regular output while processes are running.
378 .TP
379 .BI "\-O " overhead
380 Set the overhead for tracing system calls to
381 .I overhead
382 microseconds.
383 This is useful for overriding the default heuristic for guessing
384 how much time is spent in mere measuring when timing system calls using
385 the
386 .B \-c
387 option.  The accuracy of the heuristic can be gauged by timing a given
388 program run without tracing (using
389 .BR time (1))
390 and comparing the accumulated
391 system call time to the total produced using
392 .BR \-c .
393 .TP
394 .BI "\-S " sortby
395 Sort the output of the histogram printed by the
396 .B \-c
397 option by the specified criterion.  Legal values are
398 .BR time ,
399 .BR calls ,
400 .BR name ,
401 and
402 .B nothing
403 (default is
404 .BR time ).
405 .TP
406 .B \-w
407 Summarise the time difference between the beginning and end of
408 each system call.  The default is to summarise the system time.
409 .SS Filtering
410 .TP 12
411 .BI "\-e " expr
412 A qualifying expression which modifies which events to trace
413 or how to trace them.  The format of the expression is:
414 .RS 15
415 .IP
416 [\,\fIqualifier\/\fB=\fR][\fB!\fR][\fB?\fR]\,\fIvalue1\/\fR[\fB,\fR[\fB?\fR]\,\fIvalue2\/\fR]...
417 .RE
418 .IP
419 where
420 .I qualifier
421 is one of
422 .BR trace ,
423 .BR abbrev ,
424 .BR verbose ,
425 .BR raw ,
426 .BR signal ,
427 .BR read ,
428 .BR write ,
429 .BR fault ,
430 .BR inject ,
431 or
432 .B kvm
433 and
434 .I value
435 is a qualifier-dependent symbol or number.  The default
436 qualifier is
437 .BR trace .
438 Using an exclamation mark negates the set of values.  For example,
439 .BR \-e "\ " open
440 means literally
441 .BR \-e "\ " trace = open
442 which in turn means trace only the
443 .B open
444 system call.  By contrast,
445 .BR \-e "\ " trace "=!" open
446 means to trace every system call except
447 .BR open .
448 Question mark before the syscall qualification allows suppression of error
449 in case no syscalls matched the qualification provided.
450 Appending one of "@64", "@32", or "@x32" suffixes to the syscall qualification
451 allows specifying syscalls only for the 64-bit, 32-bit, or 32-on-64-bit
452 personality, respectively.
453 In addition, the special values
454 .B all
455 and
456 .B none
457 have the obvious meanings.
458 .IP
459 Note that some shells use the exclamation point for history
460 expansion even inside quoted arguments.  If so, you must escape
461 the exclamation point with a backslash.
462 .TP
463 \fB\-e\ trace\fR=\,\fIset\fR
464 Trace only the specified set of system calls.  The
465 .B \-c
466 option is useful for determining which system calls might be useful
467 to trace.  For example,
468 .BR trace = open,close,read,write
469 means to only
470 trace those four system calls.  Be careful when making inferences
471 about the user/kernel boundary if only a subset of system calls
472 are being monitored.  The default is
473 .BR trace = all .
474 .TP
475 \fB\-e\ trace\fR=/\,\fIregex\fR
476 Trace only those system calls that match the
477 .IR regex .
478 You can use
479 .B POSIX
480 Extended Regular Expression syntax (see
481 .BR regex (7)).
482 .TP
483 .BR "\-e\ trace" = %file
484 .TQ
485 .BR "\-e\ trace" = file " (deprecated)"
486 Trace all system calls which take a file name as an argument.  You
487 can think of this as an abbreviation for
488 .BR "\-e\ trace" = open , stat , chmod , unlink ,...
489 which is useful to seeing what files the process is referencing.
490 Furthermore, using the abbreviation will ensure that you don't
491 accidentally forget to include a call like
492 .B lstat
493 in the list.  Betchya woulda forgot that one.
494 .TP
495 .BR "\-e\ trace" = %process
496 .TQ
497 .BR "\-e\ trace" = process " (deprecated)"
498 Trace all system calls which involve process management.  This
499 is useful for watching the fork, wait, and exec steps of a process.
500 .TP
501 .BR "\-e\ trace" = %network
502 .TQ
503 .BR "\-e\ trace" = network " (deprecated)"
504 Trace all the network related system calls.
505 .TP
506 .BR "\-e\ trace" = %signal
507 .TQ
508 .BR "\-e\ trace" = signal " (deprecated)"
509 Trace all signal related system calls.
510 .TP
511 .BR "\-e\ trace" = %ipc
512 .TQ
513 .BR "\-e\ trace" = ipc " (deprecated)"
514 Trace all IPC related system calls.
515 .TP
516 .BR "\-e\ trace" = %desc
517 .TQ
518 .BR "\-e\ trace" = desc " (deprecated)"
519 Trace all file descriptor related system calls.
520 .TP
521 .BR "\-e\ trace" = %memory
522 .TQ
523 .BR "\-e\ trace" = memory " (deprecated)"
524 Trace all memory mapping related system calls.
525 .TP
526 .BR "\-e\ trace" = %stat
527 Trace stat syscall variants.
528 .TP
529 .BR "\-e\ trace" = %lstat
530 Trace lstat syscall variants.
531 .TP
532 .BR "\-e\ trace" = %fstat
533 Trace fstat and fstatat syscall variants.
534 .TP
535 .BR "\-e\ trace" = %%stat
536 Trace syscalls used for requesting file status (stat, lstat, fstat, fstatat,
537 statx, and their variants).
538 .TP
539 .BR "\-e\ trace" = %statfs
540 Trace statfs, statfs64, statvfs, osf_statfs, and osf_statfs64 system calls.
541 The same effect can be achieved with
542 .BR "\-e\ trace" = /^(.*_)?statv?fs
543 regular expression.
544 .TP
545 .BR "\-e\ trace" = %fstatfs
546 Trace fstatfs, fstatfs64, fstatvfs, osf_fstatfs, and osf_fstatfs64 system calls.
547 The same effect can be achieved with
548 .BR "\-e\ trace" = /fstatv?fs
549 regular expression.
550 .TP
551 .BR "\-e\ trace" = %%statfs
552 Trace syscalls related to file system statistics (statfs-like, fstatfs-like,
553 and ustat).  The same effect can be achieved with
554 .BR "\-e\ trace" = /statv?fs|fsstat|ustat
555 regular expression.
556 .TP
557 .BR "\-e\ trace" = %pure
558 Trace syscalls that always succeed and have no arguments.
559 Currently, this list includes
560 .BR arc_gettls "(2), " getdtablesize "(2), " getegid "(2), " getegid32 "(2),"
561 .BR geteuid "(2), " geteuid32 "(2), " getgid "(2), " getgid32 "(2),"
562 .BR getpagesize "(2), " getpgrp "(2), " getpid "(2), " getppid "(2),"
563 .BR get_thread_area (2)
564 (on architectures other than x86),
565 .BR gettid "(2), " get_tls "(2), " getuid "(2), " getuid32 "(2),"
566 .BR getxgid "(2), " getxpid "(2), " getxuid "(2), " kern_features "(2), and"
567 .BR metag_get_tls "(2)"
568 syscalls.
569 .TP
570 \fB\-e\ abbrev\fR=\,\fIset\fR
571 Abbreviate the output from printing each member of large structures.
572 The default is
573 .BR abbrev = all .
574 The
575 .B \-v
576 option has the effect of
577 .BR abbrev = none .
578 .TP
579 \fB\-e\ verbose\fR=\,\fIset\fR
580 Dereference structures for the specified set of system calls.  The
581 default is
582 .BR verbose = all .
583 .TP
584 \fB\-e\ raw\fR=\,\fIset\fR
585 Print raw, undecoded arguments for the specified set of system calls.
586 This option has the effect of causing all arguments to be printed
587 in hexadecimal.  This is mostly useful if you don't trust the
588 decoding or you need to know the actual numeric value of an
589 argument.
590 See also
591 .B \-X raw
592 option.
593 .TP
594 \fB\-e\ signal\fR=\,\fIset\fR
595 Trace only the specified subset of signals.  The default is
596 .BR signal = all .
597 For example,
598 .BR signal "=!" SIGIO
599 (or
600 .BR signal "=!" io )
601 causes
602 .B SIGIO
603 signals not to be traced.
604 .TP
605 \fB\-e\ read\fR=\,\fIset\fR
606 Perform a full hexadecimal and ASCII dump of all the data read from
607 file descriptors listed in the specified set.  For example, to see
608 all input activity on file descriptors
609 .I 3
610 and
611 .I 5
612 use
613 \fB\-e\ read\fR=\,\fI3\fR,\fI5\fR.
614 Note that this is independent from the normal tracing of the
615 .BR read (2)
616 system call which is controlled by the option
617 .BR -e "\ " trace = read .
618 .TP
619 \fB\-e\ write\fR=\,\fIset\fR
620 Perform a full hexadecimal and ASCII dump of all the data written to
621 file descriptors listed in the specified set.  For example, to see
622 all output activity on file descriptors
623 .I 3
624 and
625 .I 5
626 use
627 \fB\-e\ write\fR=\,\fI3\fR,\,\fI5\fR.
628 Note that this is independent from the normal tracing of the
629 .BR write (2)
630 system call which is controlled by the option
631 .BR -e "\ " trace = write .
632 .TP
633 \fB\-e\ inject\fR=\,\fIset\/\fR[:\fBerror\fR=\,\fIerrno\/\fR|:\fBretval\fR=\,\fIvalue\/\fR][:\fBsignal\fR=\,\fIsig\/\fR][:\fBsyscall\fR=\fIsyscall\fR][:\fBdelay_enter\fR=\,\fIusecs\/\fR][:\fBdelay_exit\fR=\,\fIusecs\/\fR][:\fBwhen\fR=\,\fIexpr\/\fR]
634 Perform syscall tampering for the specified set of syscalls.
635
636 At least one of
637 .BR error ,
638 .BR retval ,
639 .BR signal ,
640 .BR delay_enter ,
641 or
642 .B delay_exit
643 options has to be specified.
644 .B error
645 and
646 .B retval
647 are mutually exclusive.
648
649 If :\fBerror\fR=\,\fIerrno\/\fR option is specified,
650 a fault is injected into a syscall invocation:
651 the syscall number is replaced by -1 which corresponds to an invalid syscall
652 (unless a syscall is specified with :\fBsyscall=\fR option),
653 and the error code is specified using a symbolic
654 .I errno
655 value like
656 .B ENOSYS
657 or a numeric value within 1..4095 range.
658
659 If :\fBretval\fR=\,\fIvalue\/\fR option is specified,
660 success injection is performed: the syscall number is replaced by -1,
661 but a bogus success value is returned to the callee.
662
663 If :\fBsignal\fR=\,\fIsig\/\fR option is specified with either a symbolic value
664 like
665 .B SIGSEGV
666 or a numeric value within 1..\fBSIGRTMAX\fR range,
667 that signal is delivered on entering every syscall specified by the
668 .IR set .
669
670 If :\fBdelay_enter\fR=\,\fIusecs\/\fR or :\fBdelay_exit\fR=\,\fIusecs\/\fR
671 options are specified, delay injection is performed: the tracee is delayed
672 by at least
673 .IR usecs
674 microseconds on entering or exiting the syscall.
675
676 If :\fBsignal\fR=\,\fIsig\/\fR option is specified without
677 :\fBerror\fR=\,\fIerrno\/\fR, :\fBretval\fR=\,\fIvalue\/\fR or
678 :\fBdelay_{enter,exit}\fR=\,\fIusecs\/\fR options,
679 then only a signal
680 .I sig
681 is delivered without a syscall fault or delay injection.
682 Conversely, :\fBerror\fR=\,\fIerrno\/\fR or
683 :\fBretval\fR=\,\fIvalue\/\fR option without
684 :\fBdelay_enter\fR=\,\fIusecs\/\fR,
685 :\fBdelay_exit\fR=\,\fIusecs\/\fR or
686 :\fBsignal\fR=\,\fIsig\/\fR options injects a fault without delivering a signal
687 or injecting a delay, etc.
688
689 If both :\fBerror\fR=\,\fIerrno\/\fR or :\fBretval\fR=\,\fIvalue\/\fR
690 and :\fBsignal\fR=\,\fIsig\/\fR options are specified, then both
691 a fault or success is injected and a signal is delivered.
692
693 if :\fBsyscall\fR=\fIsyscall\fR option is specified, the corresponding syscall
694 with no side effects is injected instead of -1.
695 Currently, only "pure" (see
696 .BR "-e trace" = "%pure"
697 description) syscalls can be specified there.
698
699 Unless a :\fBwhen\fR=\,\fIexpr\fR subexpression is specified,
700 an injection is being made into every invocation of each syscall from the
701 .IR set .
702
703 The format of the subexpression is one of the following:
704 .RS
705 .IP "" 2
706 .I first
707 .RS 4
708 For every syscall from the
709 .IR set ,
710 perform an injection for the syscall invocation number
711 .I first
712 only.
713 .RE
714 .IP "" 2
715 \fIfirst\/\fB+\fR
716 .RS 4
717 For every syscall from the
718 .IR set ,
719 perform injections for the syscall invocation number
720 .I first
721 and all subsequent invocations.
722 .RE
723 .IP "" 2
724 \fIfirst\/\fB+\fIstep\fR
725 .RS 4
726 For every syscall from the
727 .IR set ,
728 perform injections for syscall invocations number
729 .IR first ,
730 .IR first + step ,
731 .IR first + step + step ,
732 and so on.
733 .RE
734 .RE
735 .IP
736 For example, to fail each third and subsequent chdir syscalls with
737 .BR ENOENT ,
738 use
739 \fB\-e\ inject\fR=\,\fIchdir\/\fR:\fBerror\fR=\,\fIENOENT\/\fR:\fBwhen\fR=\,\fI3\/\fB+\fR.
740
741 The valid range for numbers
742 .I first
743 and
744 .I step
745 is 1..65535.
746
747 An injection expression can contain only one
748 .BR error =
749 or
750 .BR retval =
751 specification, and only one
752 .BR signal =
753 specification.  If an injection expression contains multiple
754 .BR when =
755 specifications, the last one takes precedence.
756
757 Accounting of syscalls that are subject to injection
758 is done per syscall and per tracee.
759
760 Specification of syscall injection can be combined
761 with other syscall filtering options, for example,
762 \fB\-P \fI/dev/urandom \fB\-e inject\fR=\,\fIfile\/\fR:\fBerror\fR=\,\fIENOENT\fR.
763
764 .TP
765 \fB\-e\ fault\fR=\,\fIset\/\fR[:\fBerror\fR=\,\fIerrno\/\fR][:\fBwhen\fR=\,\fIexpr\/\fR]
766 Perform syscall fault injection for the specified set of syscalls.
767
768 This is equivalent to more generic
769 \fB\-e\ inject\fR= expression with default value of
770 .I errno
771 option set to
772 .IR ENOSYS .
773
774 .TP
775 .BR "\-e\ kvm" = vcpu
776 Print the exit reason of kvm vcpu.  Requires Linux kernel version 4.16.0
777 or higher.
778
779 .TP
780 .BI "\-P " path
781 Trace only system calls accessing
782 .IR path .
783 Multiple
784 .B \-P
785 options can be used to specify several paths.
786 .TP
787 .B \-v
788 Print unabbreviated versions of environment, stat, termios, etc.
789 calls.  These structures are very common in calls and so the default
790 behavior displays a reasonable subset of structure members.  Use
791 this option to get all of the gory details.
792 .SS Tracing
793 .TP 12
794 .BI "\-b " syscall
795 If specified syscall is reached, detach from traced process.
796 Currently, only
797 .I execve
798 syscall is supported.  This option is useful if you want to trace
799 multi-threaded process and therefore require -f, but don't want
800 to trace its (potentially very complex) children.
801 .TP
802 .B \-D
803 Run tracer process as a detached grandchild, not as parent of the
804 tracee.  This reduces the visible effect of
805 .B strace
806 by keeping the tracee a direct child of the calling process.
807 .TP
808 .B \-f
809 Trace child processes as they are created by currently traced
810 processes as a result of the
811 .BR fork (2),
812 .BR vfork (2)
813 and
814 .BR clone (2)
815 system calls.  Note that
816 .B \-p
817 .I PID
818 .B \-f
819 will attach all threads of process PID if it is multi-threaded,
820 not only thread with thread_id = PID.
821 .TP
822 .B \-ff
823 If the
824 .B \-o
825 .I filename
826 option is in effect, each processes trace is written to
827 .I filename.pid
828 where pid is the numeric process id of each process.
829 This is incompatible with
830 .BR \-c ,
831 since no per-process counts are kept.
832
833 One might want to consider using
834 .BR strace-log-merge (1)
835 to obtain a combined strace log view.
836 .TP
837 .BI "\-I " interruptible
838 When strace can be interrupted by signals (such as pressing ^C).
839 1: no signals are blocked; 2: fatal signals are blocked while decoding syscall
840 (default); 3: fatal signals are always blocked (default if '-o FILE PROG');
841 4: fatal signals and SIGTSTP (^Z) are always blocked (useful to make
842 strace -o FILE PROG not stop on ^Z).
843 .SS Startup
844 .TP 12
845 \fB\-E\ \fIvar\fR=\,\fIval\fR
846 Run command with
847 .IR var = val
848 in its list of environment variables.
849 .TP
850 .BI "\-E " var
851 Remove
852 .IR var
853 from the inherited list of environment variables before passing it on to
854 the command.
855 .TP
856 .BI "\-p " pid
857 Attach to the process with the process
858 .SM ID
859 .I pid
860 and begin tracing.
861 The trace may be terminated
862 at any time by a keyboard interrupt signal (\c
863 .SM CTRL\s0-C).
864 .B strace
865 will respond by detaching itself from the traced process(es)
866 leaving it (them) to continue running.
867 Multiple
868 .B \-p
869 options can be used to attach to many processes in addition to
870 .I command
871 (which is optional if at least one
872 .B \-p
873 option is given).
874 .B \-p
875 "`pidof PROG`" syntax is supported.
876 .TP
877 .BI "\-u " username
878 Run command with the user \s-1ID\s0, group \s-2ID\s0, and
879 supplementary groups of
880 .IR username .
881 This option is only useful when running as root and enables the
882 correct execution of setuid and/or setgid binaries.
883 Unless this option is used setuid and setgid programs are executed
884 without effective privileges.
885 .SS Miscellaneous
886 .TP 12
887 .B \-d
888 Show some debugging output of
889 .B strace
890 itself on the standard error.
891 .TP
892 .B \-F
893 This option is deprecated.  It is retained for backward compatibility only
894 and may be removed in future releases.
895 Usage of multiple instances of
896 .B \-F
897 option is still equivalent to a single
898 .BR \-f ,
899 and it is ignored at all if used along with one or more instances of
900 .B \-f
901 option.
902 .TP
903 .B \-h
904 Print the help summary.
905 .TP
906 .B \-V
907 Print the version number of
908 .BR strace .
909 .SH DIAGNOSTICS
910 When
911 .I command
912 exits,
913 .B strace
914 exits with the same exit status.
915 If
916 .I command
917 is terminated by a signal,
918 .B strace
919 terminates itself with the same signal, so that
920 .B strace
921 can be used as a wrapper process transparent to the invoking parent process.
922 Note that parent-child relationship (signal stop notifications,
923 getppid() value, etc) between traced process and its parent are not preserved
924 unless
925 .B \-D
926 is used.
927 .LP
928 When using
929 .B \-p
930 without a
931 .IR command ,
932 the exit status of
933 .B strace
934 is zero unless no processes has been attached or there was an unexpected error
935 in doing the tracing.
936 .SH "SETUID INSTALLATION"
937 If
938 .B strace
939 is installed setuid to root then the invoking user will be able to
940 attach to and trace processes owned by any user.
941 In addition setuid and setgid programs will be executed and traced
942 with the correct effective privileges.
943 Since only users trusted with full root privileges should be allowed
944 to do these things,
945 it only makes sense to install
946 .B strace
947 as setuid to root when the users who can execute it are restricted
948 to those users who have this trust.
949 For example, it makes sense to install a special version of
950 .B strace
951 with mode 'rwsr-xr--', user
952 .B root
953 and group
954 .BR trace ,
955 where members of the
956 .B trace
957 group are trusted users.
958 If you do use this feature, please remember to install
959 a regular non-setuid version of
960 .B strace
961 for ordinary users to use.
962 .SH "MULTIPLE PERSONALITY SUPPORT"
963 On some architectures,
964 .B strace
965 supports decoding of syscalls for processes that use different ABI rather than
966 the one
967 .B strace
968 uses.
969 Specifically, in addition to decoding native ABI,
970 .B strace
971 can decode the following ABIs on the following architectures:
972 .TS H
973 allbox;
974 lb lb
975 l l.
976 Architecture    ABIs supported
977 x86_64  i386, x32 (when built as an x86_64 application); i386 (when built as an x32 application)
978 AArch64 ARM 32-bit EABI
979 PowerPC 64-bit  PowerPC 32-bit
980 RISC-V 64-bit   RISC-V 32-bit
981 s390x   s390
982 SPARC 64-bit    SPARC 32-bit
983 TILE 64-bit     TILE 32-bit
984 .TE
985 .PP
986 This support is optional and relies on ability to generate and parse structure
987 definitions during the build time.
988 Please refer to the output of the
989 .B strace \-V
990 command in order to figure out what support is available in your strace build
991 ("non-native" refers to an ABI that differs from the ABI strace has):
992 .TP 15
993 .B m32-mpers
994 .B strace
995 can trace and properly decode non-native 32-bit binaries.
996 .TP
997 .B no-m32-mpers
998 .B strace
999 can trace, but cannot properly decode non-native 32-bit binaries.
1000 .TP
1001 .B mx32-mpers
1002 .B strace
1003 can trace and properly decode non-native 32-on-64-bit binaries.
1004 .TP
1005 .B no-mx32-mpers
1006 .B strace
1007 can trace, but cannot properly decode non-native 32-on-64-bit binaries.
1008 .PP
1009 If the output contains neither
1010 .B m32-mpers
1011 nor
1012 .BR no-m32-mpers ,
1013 then decoding of non-native 32-bit binaries is not implemented at all
1014 or not applicable.
1015 .PP
1016 Likewise, if the output contains neither
1017 .B mx32-mpers
1018 nor
1019 .BR no-mx32-mpers ,
1020 then decoding of non-native 32-on-64-bit binaries is not implemented at all
1021 or not applicable.
1022 .SH NOTES
1023 It is a pity that so much tracing clutter is produced by systems
1024 employing shared libraries.
1025 .LP
1026 It is instructive to think about system call inputs and outputs
1027 as data-flow across the user/kernel boundary.  Because user-space
1028 and kernel-space are separate and address-protected, it is
1029 sometimes possible to make deductive inferences about process
1030 behavior using inputs and outputs as propositions.
1031 .LP
1032 In some cases, a system call will differ from the documented behavior
1033 or have a different name.  For example, the
1034 .BR faccessat (2)
1035 system call does not have
1036 .I flags
1037 argument, and the
1038 .BR setrlimit (2)
1039 library function uses
1040 .BR prlimit64 (2)
1041 system call on modern (2.6.38+) kernels.  These
1042 discrepancies are normal but idiosyncratic characteristics of the
1043 system call interface and are accounted for by C library wrapper
1044 functions.
1045 .LP
1046 Some system calls have different names in different architectures and
1047 personalities.  In these cases, system call filtering and printing
1048 uses the names that match corresponding
1049 .BR __NR_ *
1050 kernel macros of the tracee's architecture and personality.
1051 There are two exceptions from this general rule:
1052 .BR arm_fadvise64_64 (2)
1053 ARM syscall and
1054 .BR xtensa_fadvise64_64 (2)
1055 Xtensa syscall are filtered and printed as
1056 .BR fadvise64_64 (2).
1057 .LP
1058 On x32, syscalls that are intended to be used by 64-bit processes and not x32
1059 ones (for example,
1060 .BR readv ,
1061 that has syscall number 19 on x86_64, with its x32 counterpart has syscall
1062 number 515), but called with
1063 .B __X32_SYSCALL_BIT
1064 flag being set, are designated with "#64" suffix.
1065 .LP
1066 On some platforms a process that is attached to with the
1067 .B \-p
1068 option may observe a spurious EINTR return from the current
1069 system call that is not restartable.  (Ideally, all system calls
1070 should be restarted on strace attach, making the attach invisible
1071 to the traced process, but a few system calls aren't.
1072 Arguably, every instance of such behavior is a kernel bug.)
1073 This may have an unpredictable effect on the process
1074 if the process takes no action to restart the system call.
1075 .LP
1076 As
1077 .B strace
1078 executes the specified
1079 .I command
1080 directly and does not employ a shell for that, scripts without shebang
1081 that usually run just fine when invoked by shell fail to execute with
1082 .B ENOEXEC
1083 error.
1084 It is advisable to manually supply a shell as a
1085 .I command
1086 with the script as its argument.
1087 .SH BUGS
1088 Programs that use the
1089 .I setuid
1090 bit do not have
1091 effective user
1092 .SM ID
1093 privileges while being traced.
1094 .LP
1095 A traced process runs slowly.
1096 .LP
1097 Traced processes which are descended from
1098 .I command
1099 may be left running after an interrupt signal (\c
1100 .SM CTRL\s0-C).
1101 .SH HISTORY
1102 The original
1103 .B strace
1104 was written by Paul Kranenburg
1105 for SunOS and was inspired by its
1106 .B trace
1107 utility.
1108 The SunOS version of
1109 .B strace
1110 was ported to Linux and enhanced
1111 by Branko Lankester, who also wrote the Linux kernel support.
1112 Even though Paul released
1113 .B strace
1114 2.5 in 1992,
1115 Branko's work was based on Paul's
1116 .B strace
1117 1.5 release from 1991.
1118 In 1993, Rick Sladkey merged
1119 .B strace
1120 2.5 for SunOS and the second release of
1121 .B strace
1122 for Linux, added many of the features of
1123 .BR truss (1)
1124 from SVR4, and produced an
1125 .B strace
1126 that worked on both platforms.  In 1994 Rick ported
1127 .B strace
1128 to SVR4 and Solaris and wrote the
1129 automatic configuration support.  In 1995 he ported
1130 .B strace
1131 to Irix
1132 and tired of writing about himself in the third person.
1133 .PP
1134 Beginning with 1996,
1135 .B strace
1136 was maintained by Wichert Akkerman.
1137 During his tenure,
1138 .B strace
1139 development migrated to CVS; ports to FreeBSD and many architectures on Linux
1140 (including ARM, IA-64, MIPS, PA-RISC, PowerPC, s390, SPARC) were introduced.
1141 In 2002, the burden of
1142 .B strace
1143 maintainership was transferred to Roland McGrath.
1144 Since then,
1145 .B strace
1146 gained support for several new Linux architectures (AMD64, s390x, SuperH),
1147 bi-architecture support for some of them, and received numerous additions and
1148 improvements in syscalls decoders on Linux;
1149 .B strace
1150 development migrated to
1151 .B git
1152 during that period.
1153 Since 2009,
1154 .B strace
1155 is actively maintained by Dmitry Levin.
1156 .B strace
1157 gained support for AArch64, ARC, AVR32, Blackfin, Meta, Nios II, OpenSISC 1000,
1158 RISC-V, Tile/TileGx, Xtensa architectures since that time.
1159 In 2012, unmaintained and apparently broken support for non-Linux operating
1160 systems was removed.
1161 Also, in 2012
1162 .B strace
1163 gained support for path tracing and file descriptor path decoding.
1164 In 2014, support for stack traces printing was added.
1165 In 2016, syscall fault injection was implemented.
1166 .PP
1167 For the additional information, please refer to the
1168 .B NEWS
1169 file and
1170 .B strace
1171 repository commit log.
1172 .SH REPORTING BUGS
1173 Problems with
1174 .B strace
1175 should be reported to the
1176 .B strace
1177 mailing list at <strace\-devel@lists.strace.io>.
1178 .SH "SEE ALSO"
1179 .BR strace-log-merge (1),
1180 .BR ltrace (1),
1181 .BR perf-trace (1),
1182 .BR trace-cmd (1),
1183 .BR time (1),
1184 .BR ptrace (2),
1185 .BR proc (5)