1 .\" $OpenBSD: ptrace.2,v 1.3 1996/10/08 01:20:12 michaels Exp $
2 .\" $NetBSD: ptrace.2,v 1.3 1996/02/23 01:39:41 jtc Exp $
4 .\" This file is in the public domain.
10 .Nd process tracing and debugging
12 .Fd #include <sys/types.h>
13 .Fd #include <sys/ptrace.h>
15 .Fn ptrace "int request" "pid_t pid" "caddr_t addr" "int data"
18 provides tracing and debugging facilities. It allows one process (the
20 process) to control another (the
22 process). Most of the time, the traced process runs normally, but when
28 it stops. The tracing process is expected to notice this via
32 signal, examine the state of the stopped process, and cause it to
33 terminate or continue as appropriate.
35 is the mechanism by which all this happens.
39 argument specifies what operation is being performed; the meaning of
40 the rest of the arguments depends on the operation, but except for one
41 special case noted below, all
43 calls are made by the tracing process, and the
45 argument specifies the process ID of the traced process.
50 This request is one of two used by the traced process; it declares
51 that the process expects to be traced by its parent. All the other
52 arguments are ignored. (If the parent process does not expect to trace
53 the child, it will probably be rather confused by the results; once the
54 traced process stops, it cannot be made to continue except via
58 When a process has used this request and calls
60 or any of the routines built on it
65 it will stop before executing the first instruction of the new image.
66 Also, any setuid or setgid bits on the executable being executed will
69 This request is the other operation used by the traced process; it allows
70 a process that is not currently being traced to deny future traces by its
71 parent. All other arguments are ignored. If the process is currently
72 being traced, it will exit with the exit status of ENOTSUP; otherwise,
73 it sets a flag that denies future traces. An attempt by the parent to
74 trace a process which has set this flag will result in a segmentation violation
77 The traced process continues execution.
79 is an address specifying the place where execution is to be resumed (a
80 new value for the program counter), or
82 to indicate that execution is to pick up where it left off.
84 provides a signal number to be delivered to the traced process as it
85 resumes execution, or 0 if no signal is to be sent.
87 The traced process continues execution for a single step. The
88 parameters are identical to those passed to
91 The traced process terminates, as if
95 given as the signal to be delivered.
97 This request allows a process to gain control of an otherwise unrelated
98 process and begin tracing it. It does not need any cooperation from
99 the to-be-traced process. In this case,
101 specifies the process ID of the to-be-traced process, and the other two
102 arguments are ignored. This request requires that the target process
103 must have the same real UID as the tracing process, and that it must
104 not be executing a setuid or setgid executable. (If the tracing
105 process is running as root, these restrictions do not apply.) The
106 tracing process will see the newly-traced process stop and may then
107 control it as if it had been traced all along.
109 This request is like PT_CONTINUE, except that it does not allow
110 specifying an alternate place to continue execution, and after it
111 succeeds, the traced process is no longer traced and continues
116 Some requests can cause
120 as a non-error value; to disambiguate,
122 can be set to 0 before the call and checked afterwards. The possible
126 No process having the specified process ID exists.
130 A process attempted to use
136 was not one of the legal requests.
138 The signal number (in
142 was neither 0 nor a legal signal number.
149 was attempted on a process with no valid register set. (This is
150 normally true only of system processes.)
156 was attempted on a process that was already being traced.
158 A request attempted to manipulate a process that was being traced by
159 some process other than the one making the request.
161 A request (other than
163 specified a process that wasn't stopped.
168 A request (other than
170 attempted to manipulate a process that wasn't being traced at all.
172 An attempt was made to use
174 on a process in violation of the requirements listed under