]> granicus.if.org Git - strace/blob - strace.1
Make out-of-memory handling more uniform
[strace] / strace.1
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 .\" 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
36 .ft R
37 .fi
38 .sp
39 ..
40 .TH STRACE 1 "2010-03-30"
41 .SH NAME
42 strace \- trace system calls and signals
43 .SH SYNOPSIS
44 .B strace
45 [
46 .B \-CdDffhiqrtttTvxxy
47 ]
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 [
63 .BI \-P path
64 ]
65 \&...
66 [
67 .BI \-s strsize
68 ]
69 [
70 .BI \-u username
71 ]
72 [
73 .BI \-E var=val
74 ]
75 \&...
76 [
77 .BI \-E var
78 ]
79 \&...
80 [
81 .I command
82 [
83 .I arg
84 \&...
85 ]
86 ]
87 .sp
88 .B strace
89 .B \-c
90 [
91 .B \-D
92 ]
93 [
94 .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
113 In the simplest case
114 .B strace
115 runs the specified
116 .I command
117 until it exits.
118 It intercepts and records the system calls which are called
119 by a process and the signals which are received by a process.
120 The name of each system call, its arguments and its return value
121 are printed on standard error or to the file specified with the
122 .B \-o
123 option.
124 .LP
125 .B strace
126 is a useful diagnostic, instructional, and debugging tool.
127 System administrators, diagnosticians and trouble-shooters will find
128 it invaluable for solving problems with
129 programs for which the source is not readily available since
130 they do not need to be recompiled in order to trace them.
131 Students, hackers and the overly-curious will find that
132 a great deal can be learned about a system and its system calls by
133 tracing even ordinary programs.  And programmers will find that
134 since system calls and signals are events that happen at the user/kernel
135 interface, a close examination of this boundary is very
136 useful for bug isolation, sanity checking and
137 attempting to capture race conditions.
138 .LP
139 Each line in the trace contains the system call name, followed
140 by its arguments in parentheses and its return value.
141 An example from stracing the command ``cat /dev/null'' is:
142 .CW
143 open("/dev/null", O_RDONLY) = 3
144 .CE
145 Errors (typically a return value of \-1) have the errno symbol
146 and error string appended.
147 .CW
148 open("/foo/bar", O_RDONLY) = -1 ENOENT (No such file or directory)
149 .CE
150 Signals are printed as a signal symbol and a signal string.
151 An excerpt from stracing and interrupting the command ``sleep 666'' is:
152 .CW
153 sigsuspend([] <unfinished ...>
154 --- SIGINT (Interrupt) ---
155 +++ killed by SIGINT +++
156 .CE
157 If a system call is being executed and meanwhile another one is being called
158 from a different thread/process then
159 .B strace
160 will try to preserve the order of those events and mark the ongoing call as
161 being
162 .IR unfinished .
163 When the call returns it will be marked as
164 .IR resumed .
165 .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
170 Interruption of a (restartable) system call by a signal delivery is processed
171 differently as kernel terminates the system call and also arranges its
172 immediate reexecution after the signal handler completes.
173 .CW
174 read(0, 0x7ffff72cf5cf, 1)              = ? ERESTARTSYS (To be restarted)
175 --- SIGALRM (Alarm clock) @ 0 (0) ---
176 rt_sigreturn(0xe)                       = 0
177 read(0, ""..., 1)                       = 0
178 .CE
179 Arguments are printed in symbolic form with a passion.
180 This example shows the shell performing ``>>xyzzy'' output redirection:
181 .CW
182 open("xyzzy", O_WRONLY|O_APPEND|O_CREAT, 0666) = 3
183 .CE
184 Here the three argument form of open is decoded by breaking down the
185 flag argument into its three bitwise-OR constituents and printing the
186 mode value in octal by tradition.  Where traditional or native
187 usage differs from ANSI or POSIX, the latter forms are preferred.
188 In some cases,
189 .B strace
190 output has proven to be more readable than the source.
191 .LP
192 Structure pointers are dereferenced and the members are displayed
193 as appropriate.  In all cases arguments are formatted in the most C-like
194 fashion possible.
195 For example, the essence of the command ``ls \-l /dev/null'' is captured as:
196 .CW
197 lstat("/dev/null", {st_mode=S_IFCHR|0666, st_rdev=makedev(1, 3), ...}) = 0
198 .CE
199 Notice how the `struct stat' argument is dereferenced and how each member is
200 displayed symbolically.  In particular, observe how the st_mode member
201 is carefully decoded into a bitwise-OR of symbolic and numeric values.
202 Also notice in this example that the first argument to lstat is an input
203 to the system call and the second argument is an output.  Since output
204 arguments are not modified if the system call fails, arguments may not
205 always be dereferenced.  For example, retrying the ``ls \-l'' example
206 with a non-existent file produces the following line:
207 .CW
208 lstat("/foo/bar", 0xb004) = -1 ENOENT (No such file or directory)
209 .CE
210 In this case the porch light is on but nobody is home.
211 .LP
212 Character pointers are dereferenced and printed as C strings.
213 Non-printing characters in strings are normally represented by
214 ordinary C escape codes.
215 Only the first
216 .I strsize
217 (32 by default) bytes of strings are printed;
218 longer strings have an ellipsis appended following the closing quote.
219 Here is a line from ``ls \-l'' where the
220 .B getpwuid
221 library routine is reading the password file:
222 .CW
223 read(3, "root::0:0:System Administrator:/"..., 1024) = 422
224 .CE
225 While structures are annotated using curly braces, simple pointers
226 and arrays are printed using square brackets with commas separating
227 elements.  Here is an example from the command ``id'' on a system with
228 supplementary group ids:
229 .CW
230 getgroups(32, [100, 0]) = 2
231 .CE
232 On the other hand, bit-sets are also shown using square brackets
233 but set elements are separated only by a space.  Here is the shell
234 preparing to execute an external command:
235 .CW
236 sigprocmask(SIG_BLOCK, [CHLD TTOU], []) = 0
237 .CE
238 Here the second argument is a bit-set of two signals, SIGCHLD and SIGTTOU.
239 In some cases the bit-set is so full that printing out the unset
240 elements is more valuable.  In that case, the bit-set is prefixed by
241 a tilde like this:
242 .CW
243 sigprocmask(SIG_UNBLOCK, ~[], NULL) = 0
244 .CE
245 Here the second argument represents the full set of all signals.
246 .SH OPTIONS
247 .TP 12
248 .TP
249 .B \-c
250 Count time, calls, and errors for each system call and report a summary on
251 program exit.  On Linux, this attempts to show system time (CPU time spent
252 running in the kernel) independent of wall clock time.  If
253 .B \-c
254 is used with
255 .B \-f
256 or
257 .B \-F
258 (below), only aggregate totals for all traced processes are kept.
259 .TP
260 .B \-C
261 Like
262 .B \-c
263 but also print regular output while processes are running.
264 .TP
265 .B \-D
266 (Not available on SVR4 and FreeBSD.)
267 Run tracer process as a detached grandchild, not as parent of the
268 tracee.  This reduces the visible effect of
269 .B strace
270 by keeping the tracee a direct child of the calling process.
271 .TP
272 .B \-d
273 Show some debugging output of
274 .B strace
275 itself on the standard error.
276 .TP
277 .B \-f
278 Trace child processes as they are created by currently traced
279 processes as a result of the
280 .BR fork (2)
281 system call.
282 .IP
283 On non-Linux platforms the new process is
284 attached to as soon as its pid is known (through the return value of
285 .BR fork (2)
286 in the parent process). This means that such children may run
287 uncontrolled for a while (especially in the case of a
288 .BR vfork (2)),
289 until the parent is scheduled again to complete its
290 .RB ( v ) fork (2)
291 call.  On Linux the child is traced from its first instruction with no delay.
292 If the parent process decides to
293 .BR wait (2)
294 for a child that is currently
295 being traced, it is suspended until an appropriate child process either
296 terminates or incurs a signal that would cause it to terminate (as
297 determined from the child's current signal disposition).
298 .IP
299 On SunOS 4.x the tracing of
300 .BR vfork s
301 is accomplished with some dynamic linking trickery.
302 .TP
303 .B \-ff
304 If the
305 .B \-o
306 .I filename
307 option is in effect, each processes trace is written to
308 .I filename.pid
309 where pid is the numeric process id of each process.
310 This is incompatible with
311 .BR \-c ,
312 since no per-process counts are kept.
313 .TP
314 .B \-F
315 This option is now obsolete and it has the same functionality as
316 .BR \-f .
317 .TP
318 .B \-h
319 Print the help summary.
320 .TP
321 .B \-i
322 Print the instruction pointer at the time of the system call.
323 .TP
324 .B \-q
325 Suppress messages about attaching, detaching etc.  This happens
326 automatically when output is redirected to a file and the command
327 is run directly instead of attaching.
328 .TP
329 .B \-r
330 Print a relative timestamp upon entry to each system call.  This
331 records the time difference between the beginning of successive
332 system calls.
333 .TP
334 .B \-t
335 Prefix each line of the trace with the time of day.
336 .TP
337 .B \-tt
338 If given twice, the time printed will include the microseconds.
339 .TP
340 .B \-ttt
341 If given thrice, the time printed will include the microseconds
342 and the leading portion will be printed as the number
343 of seconds since the epoch.
344 .TP
345 .B \-T
346 Show the time spent in system calls. This records the time
347 difference between the beginning and the end of each system call.
348 .TP
349 .B \-v
350 Print unabbreviated versions of environment, stat, termios, etc.
351 calls.  These structures are very common in calls and so the default
352 behavior displays a reasonable subset of structure members.  Use
353 this option to get all of the gory details.
354 .TP
355 .B \-V
356 Print the version number of
357 .BR strace .
358 .TP
359 .B \-x
360 Print all non-ASCII strings in hexadecimal string format.
361 .TP
362 .B \-xx
363 Print all strings in hexadecimal string format.
364 .TP
365 .B \-y
366 Print paths associated with file descriptor arguments.
367 .TP
368 .BI "\-a " column
369 Align return values in a specific column (default column 40).
370 .TP
371 .BI "\-e " expr
372 A qualifying expression which modifies which events to trace
373 or how to trace them.  The format of the expression is:
374 .RS 15
375 .IP
376 [\fIqualifier\fB=\fR][\fB!\fR]\fIvalue1\fR[\fB,\fIvalue2\fR]...
377 .RE
378 .IP
379 where
380 .I qualifier
381 is one of
382 .BR trace ,
383 .BR abbrev ,
384 .BR verbose ,
385 .BR raw ,
386 .BR signal ,
387 .BR read ,
388 or
389 .B write
390 and
391 .I value
392 is a qualifier-dependent symbol or number.  The default
393 qualifier is
394 .BR trace .
395 Using an exclamation mark negates the set of values.  For example,
396 .BR \-e "\ " open
397 means literally
398 .BR \-e "\ " trace = open
399 which in turn means trace only the
400 .B open
401 system call.  By contrast,
402 .BR \-e "\ " trace "=!" open
403 means to trace every system call except
404 .BR open .
405 In addition, the special values
406 .B all
407 and
408 .B none
409 have the obvious meanings.
410 .IP
411 Note that some shells use the exclamation point for history
412 expansion even inside quoted arguments.  If so, you must escape
413 the exclamation point with a backslash.
414 .TP
415 \fB\-e\ trace\fR=\fIset\fR
416 Trace only the specified set of system calls.  The
417 .B \-c
418 option is useful for determining which system calls might be useful
419 to trace.  For example,
420 .BR trace = open,close,read,write
421 means to only
422 trace those four system calls.  Be careful when making inferences
423 about the user/kernel boundary if only a subset of system calls
424 are being monitored.  The default is
425 .BR trace = all .
426 .TP
427 .BR "\-e\ trace" = file
428 Trace all system calls which take a file name as an argument.  You
429 can think of this as an abbreviation for
430 .BR "\-e\ trace" = open , stat , chmod , unlink ,...
431 which is useful to seeing what files the process is referencing.
432 Furthermore, using the abbreviation will ensure that you don't
433 accidentally forget to include a call like
434 .B lstat
435 in the list.  Betchya woulda forgot that one.
436 .TP
437 .BR "\-e\ trace" = process
438 Trace all system calls which involve process management.  This
439 is useful for watching the fork, wait, and exec steps of a process.
440 .TP
441 .BR "\-e\ trace" = network
442 Trace all the network related system calls.
443 .TP
444 .BR "\-e\ trace" = signal
445 Trace all signal related system calls.
446 .TP
447 .BR "\-e\ trace" = ipc
448 Trace all IPC related system calls.
449 .TP
450 .BR "\-e\ trace" = desc
451 Trace all file descriptor related system calls.
452 .TP
453 \fB\-e\ abbrev\fR=\fIset\fR
454 Abbreviate the output from printing each member of large structures.
455 The default is
456 .BR abbrev = all .
457 The
458 .B \-v
459 option has the effect of
460 .BR abbrev = none .
461 .TP
462 \fB\-e\ verbose\fR=\fIset\fR
463 Dereference structures for the specified set of system calls.  The
464 default is
465 .BR verbose = all .
466 .TP
467 \fB\-e\ raw\fR=\fIset\fR
468 Print raw, undecoded arguments for the specified set of system calls.
469 This option has the effect of causing all arguments to be printed
470 in hexadecimal.  This is mostly useful if you don't trust the
471 decoding or you need to know the actual numeric value of an
472 argument.
473 .TP
474 \fB\-e\ signal\fR=\fIset\fR
475 Trace only the specified subset of signals.  The default is
476 .BR signal = all .
477 For example,
478 .B signal "=!" SIGIO
479 (or
480 .BR signal "=!" io )
481 causes SIGIO signals not to be traced.
482 .TP
483 \fB\-e\ read\fR=\fIset\fR
484 Perform a full hexadecimal and ASCII dump of all the data read from
485 file descriptors listed in the specified set.  For example, to see
486 all input activity on file descriptors
487 .I 3
488 and
489 .I 5
490 use
491 \fB\-e\ read\fR=\fI3\fR,\fI5\fR.
492 Note that this is independent from the normal tracing of the
493 .BR read (2)
494 system call which is controlled by the option
495 .BR -e "\ " trace = read .
496 .TP
497 \fB\-e\ write\fR=\fIset\fR
498 Perform a full hexadecimal and ASCII dump of all the data written to
499 file descriptors listed in the specified set.  For example, to see
500 all output activity on file descriptors
501 .I 3
502 and
503 .I 5
504 use
505 \fB\-e\ write\fR=\fI3\fR,\fI5\fR.
506 Note that this is independent from the normal tracing of the
507 .BR write (2)
508 system call which is controlled by the option
509 .BR -e "\ " trace = write .
510 .TP
511 .BI "\-o " filename
512 Write the trace output to the file
513 .I filename
514 rather than to stderr.
515 Use
516 .I filename.pid
517 if
518 .B \-ff
519 is used.
520 If the argument begins with `|' or with `!' then the rest of the
521 argument is treated as a command and all output is piped to it.
522 This is convenient for piping the debugging output to a program
523 without affecting the redirections of executed programs.
524 .TP
525 .BI "\-O " overhead
526 Set the overhead for tracing system calls to
527 .I overhead
528 microseconds.
529 This is useful for overriding the default heuristic for guessing
530 how much time is spent in mere measuring when timing system calls using
531 the
532 .B \-c
533 option.  The accuracy of the heuristic can be gauged by timing a given
534 program run without tracing (using
535 .BR time (1))
536 and comparing the accumulated
537 system call time to the total produced using
538 .BR \-c .
539 .TP
540 .BI "\-p " pid
541 Attach to the process with the process
542 .SM ID
543 .I pid
544 and begin tracing.
545 The trace may be terminated
546 at any time by a keyboard interrupt signal (\c
547 .SM CTRL\s0-C).
548 .B strace
549 will respond by detaching itself from the traced process(es)
550 leaving it (them) to continue running.
551 Multiple
552 .B \-p
553 options 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
557 option is given).
558 .TP
559 .BI "\-P " path
560 Trace only system calls accessing
561 .I path.
562 Multiple
563 .B \-P
564 options can be used to specify up to 256 paths.
565 .TP
566 .BI "\-s " strsize
567 Specify the maximum string size to print (the default is 32).  Note
568 that filenames are not considered strings and are always printed in
569 full.
570 .TP
571 .BI "\-S " sortby
572 Sort the output of the histogram printed by the
573 .B \-c
574 option by the specified criterion.  Legal values are
575 .BR time ,
576 .BR calls ,
577 .BR name ,
578 and
579 .B nothing
580 (default is
581 .BR time ).
582 .TP
583 .BI "\-u " username
584 Run command with the user \s-1ID\s0, group \s-2ID\s0, and
585 supplementary groups of
586 .IR username .
587 This option is only useful when running as root and enables the
588 correct execution of setuid and/or setgid binaries.
589 Unless this option is used setuid and setgid programs are executed
590 without effective privileges.
591 .TP
592 \fB\-E\ \fIvar\fR=\fIval\fR
593 Run command with
594 .IR var = val
595 in its list of environment variables.
596 .TP
597 .BI "\-E " var
598 Remove
599 .IR var
600 from the inherited list of environment variables before passing it on to
601 the command.
602 .SH DIAGNOSTICS
603 When
604 .I command
605 exits,
606 .B strace
607 exits with the same exit status.
608 If
609 .I command
610 is terminated by a signal,
611 .B strace
612 terminates itself with the same signal, so that
613 .B strace
614 can be used as a wrapper process transparent to the invoking parent process.
615 .LP
616 When using
617 .BR \-p ,
618 the exit status of
619 .B strace
620 is zero unless there was an unexpected error in doing the tracing.
621 .SH "SETUID INSTALLATION"
622 If
623 .B strace
624 is installed setuid to root then the invoking user will be able to
625 attach to and trace processes owned by any user.
626 In addition setuid and setgid programs will be executed and traced
627 with the correct effective privileges.
628 Since only users trusted with full root privileges should be allowed
629 to do these things,
630 it only makes sense to install
631 .B strace
632 as setuid to root when the users who can execute it are restricted
633 to those users who have this trust.
634 For example, it makes sense to install a special version of
635 .B strace
636 with mode `rwsr-xr--', user
637 .B root
638 and group
639 .BR trace ,
640 where members of the
641 .B trace
642 group are trusted users.
643 If you do use this feature, please remember to install
644 a non-setuid version of
645 .B strace
646 for ordinary lusers to use.
647 .SH "SEE ALSO"
648 .BR ltrace (1),
649 .BR time (1),
650 .BR ptrace (2),
651 .BR proc (5)
652 .SH NOTES
653 It is a pity that so much tracing clutter is produced by systems
654 employing shared libraries.
655 .LP
656 It is instructive to think about system call inputs and outputs
657 as data-flow across the user/kernel boundary.  Because user-space
658 and kernel-space are separate and address-protected, it is
659 sometimes possible to make deductive inferences about process
660 behavior using inputs and outputs as propositions.
661 .LP
662 In some cases, a system call will differ from the documented behavior
663 or have a different name.  For example, on System V-derived systems
664 the true
665 .BR time (2)
666 system call does not take an argument and the
667 .B stat
668 function is called
669 .B xstat
670 and takes an extra leading argument.  These
671 discrepancies are normal but idiosyncratic characteristics of the
672 system call interface and are accounted for by C library wrapper
673 functions.
674 .LP
675 On some platforms a process that has a system call trace applied
676 to it with the
677 .B \-p
678 option will receive a
679 .BR \s-1SIGSTOP\s0 .
680 This signal may interrupt a system call that is not restartable.
681 This may have an unpredictable effect on the process
682 if the process takes no action to restart the system call.
683 .SH BUGS
684 Programs that use the
685 .I setuid
686 bit do not have
687 effective user
688 .SM ID
689 privileges while being traced.
690 .LP
691 A traced process ignores
692 .SM SIGSTOP
693 except on SVR4 platforms.
694 .LP
695 A traced process which tries to block SIGTRAP will be sent a SIGSTOP
696 in an attempt to force continuation of tracing.
697 .LP
698 A traced process runs slowly.
699 .LP
700 Traced processes which are descended from
701 .I command
702 may be left running after an interrupt signal (\c
703 .SM CTRL\s0-C).
704 .LP
705 On Linux, exciting as it would be, tracing the init process is forbidden.
706 .LP
707 The
708 .B \-i
709 option is weakly supported.
710 .SH HISTORY
711 .B strace
712 The original
713 .B strace
714 was written by Paul Kranenburg
715 for SunOS and was inspired by its trace utility.
716 The SunOS version of
717 .B strace
718 was ported to Linux and enhanced
719 by Branko Lankester, who also wrote the Linux kernel support.
720 Even though Paul released
721 .B strace
722 2.5 in 1992,
723 Branko's work was based on Paul's
724 .B strace
725 1.5 release from 1991.
726 In 1993, Rick Sladkey merged
727 .B strace
728 2.5 for SunOS and the second release of
729 .B strace
730 for Linux, added many of the features of
731 .BR truss (1)
732 from SVR4, and produced an
733 .B strace
734 that worked on both platforms.  In 1994 Rick ported
735 .B strace
736 to SVR4 and Solaris and wrote the
737 automatic configuration support.  In 1995 he ported
738 .B strace
739 to Irix
740 and tired of writing about himself in the third person.
741 .SH BUGS
742 The SIGTRAP signal is used internally by the kernel implementation of
743 system call tracing.  When a traced process receives a SIGTRAP signal not
744 associated with tracing, strace will not report that signal correctly.
745 This signal is not normally used by programs, but could be via a hard-coded
746 break instruction or via
747 .BR kill (2).
748 .SH PROBLEMS
749 Problems with
750 .B strace
751 should be reported via the Debian Bug Tracking System,
752 or to the
753 .B strace
754 mailing list at <strace\-devel@lists.sourceforge.net>.