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