]> CyberLeo.Net >> Repos - FreeBSD/releng/9.1.git/blob - lib/libc/sys/ptrace.2
Copy stable/9 to releng/9.1 as part of the 9.1-RELEASE release process.
[FreeBSD/releng/9.1.git] / lib / libc / sys / ptrace.2
1 .\" $FreeBSD$
2 .\"     $NetBSD: ptrace.2,v 1.2 1995/02/27 12:35:37 cgd Exp $
3 .\"
4 .\" This file is in the public domain.
5 .Dd February 19, 2012
6 .Dt PTRACE 2
7 .Os
8 .Sh NAME
9 .Nm ptrace
10 .Nd process tracing and debugging
11 .Sh LIBRARY
12 .Lb libc
13 .Sh SYNOPSIS
14 .In sys/types.h
15 .In sys/ptrace.h
16 .Ft int
17 .Fn ptrace "int request" "pid_t pid" "caddr_t addr" "int data"
18 .Sh DESCRIPTION
19 The
20 .Fn ptrace
21 system call
22 provides tracing and debugging facilities.
23 It allows one process
24 (the
25 .Em tracing
26 process)
27 to control another
28 (the
29 .Em traced
30 process).
31 The tracing process must first attach to the traced process, and then
32 issue a series of
33 .Fn ptrace
34 system calls to control the execution of the process, as well as access
35 process memory and register state.
36 For the duration of the tracing session, the traced process will be
37 .Dq re-parented ,
38 with its parent process ID (and resulting behavior)
39 changed to the tracing process.
40 It is permissible for a tracing process to attach to more than one
41 other process at a time.
42 When the tracing process has completed its work, it must detach the
43 traced process; if a tracing process exits without first detaching all
44 processes it has attached, those processes will be killed.
45 .Pp
46 Most of the time, the traced process runs normally, but when it
47 receives a signal
48 (see
49 .Xr sigaction 2 ) ,
50 it stops.
51 The tracing process is expected to notice this via
52 .Xr wait 2
53 or the delivery of a
54 .Dv SIGCHLD
55 signal, examine the state of the stopped process, and cause it to
56 terminate or continue as appropriate.
57 The signal may be a normal process signal, generated as a result of
58 traced process behavior, or use of the
59 .Xr kill 2
60 system call; alternatively, it may be generated by the tracing facility
61 as a result of attaching, system calls, or stepping by the tracing
62 process.
63 The tracing process may choose to intercept the signal, using it to
64 observe process behavior (such as
65 .Dv SIGTRAP ) ,
66 or forward the signal to the process if appropriate.
67 The
68 .Fn ptrace
69 system call
70 is the mechanism by which all this happens.
71 .Pp
72 The
73 .Fa request
74 argument specifies what operation is being performed; the meaning of
75 the rest of the arguments depends on the operation, but except for one
76 special case noted below, all
77 .Fn ptrace
78 calls are made by the tracing process, and the
79 .Fa pid
80 argument specifies the process ID of the traced process
81 or a corresponding thread ID.
82 The
83 .Fa request
84 argument
85 can be:
86 .Bl -tag -width 12n
87 .It Dv PT_TRACE_ME
88 This request is the only one used by the traced process; it declares
89 that the process expects to be traced by its parent.
90 All the other arguments are ignored.
91 (If the parent process does not expect to trace the child, it will
92 probably be rather confused by the results; once the traced process
93 stops, it cannot be made to continue except via
94 .Fn ptrace . )
95 When a process has used this request and calls
96 .Xr execve 2
97 or any of the routines built on it
98 (such as
99 .Xr execv 3 ) ,
100 it will stop before executing the first instruction of the new image.
101 Also, any setuid or setgid bits on the executable being executed will
102 be ignored.
103 .It Dv PT_READ_I , Dv PT_READ_D
104 These requests read a single
105 .Vt int
106 of data from the traced process's address space.
107 Traditionally,
108 .Fn ptrace
109 has allowed for machines with distinct address spaces for instruction
110 and data, which is why there are two requests: conceptually,
111 .Dv PT_READ_I
112 reads from the instruction space and
113 .Dv PT_READ_D
114 reads from the data space.
115 In the current
116 .Fx
117 implementation, these two requests are completely identical.
118 The
119 .Fa addr
120 argument specifies the address
121 (in the traced process's virtual address space)
122 at which the read is to be done.
123 This address does not have to meet any alignment constraints.
124 The value read is returned as the return value from
125 .Fn ptrace .
126 .It Dv PT_WRITE_I , Dv PT_WRITE_D
127 These requests parallel
128 .Dv PT_READ_I
129 and
130 .Dv PT_READ_D ,
131 except that they write rather than read.
132 The
133 .Fa data
134 argument supplies the value to be written.
135 .It Dv PT_IO
136 This request allows reading and writing arbitrary amounts of data in
137 the traced process's address space.
138 The
139 .Fa addr
140 argument specifies a pointer to a
141 .Vt "struct ptrace_io_desc" ,
142 which is defined as follows:
143 .Bd -literal
144 struct ptrace_io_desc {
145         int     piod_op;        /* I/O operation */
146         void    *piod_offs;     /* child offset */
147         void    *piod_addr;     /* parent offset */
148         size_t  piod_len;       /* request length */
149 };
150
151 /*
152  * Operations in piod_op.
153  */
154 #define PIOD_READ_D     1       /* Read from D space */
155 #define PIOD_WRITE_D    2       /* Write to D space */
156 #define PIOD_READ_I     3       /* Read from I space */
157 #define PIOD_WRITE_I    4       /* Write to I space */
158 .Ed
159 .Pp
160 The
161 .Fa data
162 argument is ignored.
163 The actual number of bytes read or written is stored in
164 .Va piod_len
165 upon return.
166 .It Dv PT_CONTINUE
167 The traced process continues execution.
168 The
169 .Fa addr
170 argument
171 is an address specifying the place where execution is to be resumed
172 (a new value for the program counter),
173 or
174 .Po Vt caddr_t Pc Ns 1
175 to indicate that execution is to pick up where it left off.
176 The
177 .Fa data
178 argument
179 provides a signal number to be delivered to the traced process as it
180 resumes execution, or 0 if no signal is to be sent.
181 .It Dv PT_STEP
182 The traced process is single stepped one instruction.
183 The
184 .Fa addr
185 argument
186 should be passed
187 .Po Vt caddr_t Pc Ns 1 .
188 The
189 .Fa data
190 argument
191 provides a signal number to be delivered to the traced process as it
192 resumes execution, or 0 if no signal is to be sent.
193 .It Dv PT_KILL
194 The traced process terminates, as if
195 .Dv PT_CONTINUE
196 had been used with
197 .Dv SIGKILL
198 given as the signal to be delivered.
199 .It Dv PT_ATTACH
200 This request allows a process to gain control of an otherwise
201 unrelated process and begin tracing it.
202 It does not need any cooperation from the to-be-traced process.
203 In
204 this case,
205 .Fa pid
206 specifies the process ID of the to-be-traced process, and the other
207 two arguments are ignored.
208 This request requires that the target process must have the same real
209 UID as the tracing process, and that it must not be executing a setuid
210 or setgid executable.
211 (If the tracing process is running as root, these restrictions do not
212 apply.)
213 The tracing process will see the newly-traced process stop and may
214 then control it as if it had been traced all along.
215 .It Dv PT_DETACH
216 This request is like PT_CONTINUE, except that it does not allow
217 specifying an alternate place to continue execution, and after it
218 succeeds, the traced process is no longer traced and continues
219 execution normally.
220 .It Dv PT_GETREGS
221 This request reads the traced process's machine registers into the
222 .Do
223 .Vt "struct reg"
224 .Dc
225 (defined in
226 .In machine/reg.h )
227 pointed to by
228 .Fa addr .
229 .It Dv PT_SETREGS
230 This request is the converse of
231 .Dv PT_GETREGS ;
232 it loads the traced process's machine registers from the
233 .Do
234 .Vt "struct reg"
235 .Dc
236 (defined in
237 .In machine/reg.h )
238 pointed to by
239 .Fa addr .
240 .It Dv PT_GETFPREGS
241 This request reads the traced process's floating-point registers into
242 the
243 .Do
244 .Vt "struct fpreg"
245 .Dc
246 (defined in
247 .In machine/reg.h )
248 pointed to by
249 .Fa addr .
250 .It Dv PT_SETFPREGS
251 This request is the converse of
252 .Dv PT_GETFPREGS ;
253 it loads the traced process's floating-point registers from the
254 .Do
255 .Vt "struct fpreg"
256 .Dc
257 (defined in
258 .In machine/reg.h )
259 pointed to by
260 .Fa addr .
261 .It Dv PT_GETDBREGS
262 This request reads the traced process's debug registers into
263 the
264 .Do
265 .Vt "struct dbreg"
266 .Dc
267 (defined in
268 .In machine/reg.h )
269 pointed to by
270 .Fa addr .
271 .It Dv PT_SETDBREGS
272 This request is the converse of
273 .Dv PT_GETDBREGS ;
274 it loads the traced process's debug registers from the
275 .Do
276 .Vt "struct dbreg"
277 .Dc
278 (defined in
279 .In machine/reg.h )
280 pointed to by
281 .Fa addr .
282 .It Dv PT_LWPINFO
283 This request can be used to obtain information about the kernel thread,
284 also known as light-weight process, that caused the traced process to stop.
285 The
286 .Fa addr
287 argument specifies a pointer to a
288 .Vt "struct ptrace_lwpinfo" ,
289 which is defined as follows:
290 .Bd -literal
291 struct ptrace_lwpinfo {
292         lwpid_t pl_lwpid;
293         int     pl_event;
294         int     pl_flags;
295         sigset_t pl_sigmask;
296         sigset_t pl_siglist;
297         siginfo_t pl_siginfo;
298         char    pl_tdname[MAXCOMLEN + 1];
299         int     pl_child_pid;
300 };
301 .Ed
302 .Pp
303 The
304 .Fa data
305 argument is to be set to the size of the structure known to the caller.
306 This allows the structure to grow without affecting older programs.
307 .Pp
308 The fields in the
309 .Vt "struct ptrace_lwpinfo"
310 have the following meaning:
311 .Bl -tag -width indent -compact
312 .It pl_lwpid
313 LWP id of the thread
314 .It pl_event
315 Event that caused the stop.
316 Currently defined events are
317 .Bl -tag -width indent -compact
318 .It PL_EVENT_NONE
319 No reason given
320 .It PL_EVENT_SIGNAL
321 Thread stopped due to the pending signal
322 .El
323 .It pl_flags
324 Flags that specify additional details about observed stop.
325 Currently defined flags are:
326 .Bl -tag -width indent -compact
327 .It PL_FLAG_SCE
328 The thread stopped due to system call entry, right after the kernel is entered.
329 The debugger may examine syscall arguments that are stored in memory and
330 registers according to the ABI of the current process, and modify them,
331 if needed.
332 .It PL_FLAG_SCX
333 The thread is stopped immediately before syscall is returning to the usermode.
334 The debugger may examine system call return values in the ABI-defined registers
335 and/or memory.
336 .It PL_FLAG_EXEC
337 When
338 .Dv PL_FLAG_SCX
339 is set, this flag may be additionally specified to inform that the
340 program being executed by debuggee process has been changed by successful
341 execution of a system call from the
342 .Fn execve 2
343 family.
344 .It PL_FLAG_SI
345 Indicates that
346 .Va pl_siginfo
347 member of
348 .Vt "struct ptrace_lwpinfo"
349 contains valid information.
350 .It PL_FLAG_FORKED
351 Indicates that the process is returning from a call to
352 .Fn fork 2
353 that created a new child process.
354 The process identifier of the new process is available in the
355 .Va pl_child_pid
356 member of
357 .Vt "struct ptrace_lwpinfo" .
358 .It PL_FLAG_CHILD
359 The flag is set for first event reported from a new child, which is
360 automatically attached due to
361 .Dv PT_FOLLOW_FORK
362 enabled.
363 .El
364 .It pl_sigmask
365 The current signal mask of the LWP
366 .It pl_siglist
367 The current pending set of signals for the LWP.
368 Note that signals that are delivered to the process would not appear
369 on an LWP siglist until the thread is selected for delivery.
370 .It pl_siginfo
371 The siginfo that accompanies the signal pending.
372 Only valid for
373 .Dv PL_EVENT_SIGNAL
374 stop when
375 .Dv PL_FLAG_SI
376 is set in
377 .Va pl_flags .
378 .It pl_tdname
379 The name of the thread.
380 .It pl_child_pid
381 The process identifier of the new child process.
382 Only valid for a
383 .Dv PL_EVENT_SIGNAL
384 stop when
385 .Dv PL_FLAG_FORKED
386 is set in
387 .Va pl_flags .
388 .El
389 .It PT_GETNUMLWPS
390 This request returns the number of kernel threads associated with the
391 traced process.
392 .It PT_GETLWPLIST
393 This request can be used to get the current thread list.
394 A pointer to an array of type
395 .Vt lwpid_t
396 should be passed in
397 .Fa addr ,
398 with the array size specified by
399 .Fa data .
400 The return value from
401 .Fn ptrace
402 is the count of array entries filled in.
403 .It PT_SETSTEP
404 This request will turn on single stepping of the specified process.
405 .It PT_CLEARSTEP
406 This request will turn off single stepping of the specified process.
407 .It PT_SUSPEND
408 This request will suspend the specified thread.
409 .It PT_RESUME
410 This request will resume the specified thread.
411 .It PT_TO_SCE
412 This request will trace the specified process on each system call entry.
413 .It PT_TO_SCX
414 This request will trace the specified process on each system call exit.
415 .It PT_SYSCALL
416 This request will trace the specified process
417 on each system call entry and exit.
418 .It PT_FOLLOW_FORK
419 This request controls tracing for new child processes of a traced process.
420 If
421 .Fa data
422 is non-zero,
423 then new child processes will enable tracing and stop before executing their
424 first instruction.
425 If
426 .Fa data
427 is zero, then new child processes will execute without tracing enabled.
428 By default, tracing is not enabled for new child processes.
429 Child processes do not inherit this property.
430 The traced process will set the
431 .Dv PL_FLAG_FORKED
432 flag upon exit from a system call that creates a new process.
433 .It PT_VM_TIMESTAMP
434 This request returns the generation number or timestamp of the memory map of
435 the traced process as the return value from
436 .Fn ptrace .
437 This provides a low-cost way for the tracing process to determine if the
438 VM map changed since the last time this request was made.
439 .It PT_VM_ENTRY
440 This request is used to iterate over the entries of the VM map of the traced
441 process.
442 The
443 .Fa addr
444 argument specifies a pointer to a
445 .Vt "struct ptrace_vm_entry" ,
446 which is defined as follows:
447 .Bd -literal
448 struct ptrace_vm_entry {
449         int             pve_entry;
450         int             pve_timestamp;
451         u_long          pve_start;
452         u_long          pve_end;
453         u_long          pve_offset;
454         u_int           pve_prot;
455         u_int           pve_pathlen;
456         long            pve_fileid;
457         uint32_t        pve_fsid;
458         char            *pve_path;
459 };
460 .Ed
461 .Pp
462 The first entry is returned by setting
463 .Va pve_entry
464 to zero.
465 Subsequent entries are returned by leaving
466 .Va pve_entry
467 unmodified from the value returned by previous requests.
468 The
469 .Va pve_timestamp
470 field can be used to detect changes to the VM map while iterating over the
471 entries.
472 The tracing process can then take appropriate action, such as restarting.
473 By setting
474 .Va pve_pathlen
475 to a non-zero value on entry, the pathname of the backing object is returned
476 in the buffer pointed to by
477 .Va pve_path ,
478 provided the entry is backed by a vnode.
479 The
480 .Va pve_pathlen
481 field is updated with the actual length of the pathname (including the
482 terminating null character).
483 The
484 .Va pve_offset
485 field is the offset within the backing object at which the range starts.
486 The range is located in the VM space at
487 .Va pve_start
488 and extends up to
489 .Va pve_end
490 (inclusive).
491 .Pp
492 The
493 .Fa data
494 argument is ignored.
495 .El
496 .Pp
497 Additionally, machine-specific requests can exist.
498 .Sh RETURN VALUES
499 Some requests can cause
500 .Fn ptrace
501 to return
502 \-1
503 as a non-error value; to disambiguate,
504 .Va errno
505 can be set to 0 before the call and checked afterwards.
506 .Sh ERRORS
507 The
508 .Fn ptrace
509 system call may fail if:
510 .Bl -tag -width Er
511 .It Bq Er ESRCH
512 .Bl -bullet -compact
513 .It
514 No process having the specified process ID exists.
515 .El
516 .It Bq Er EINVAL
517 .Bl -bullet -compact
518 .It
519 A process attempted to use
520 .Dv PT_ATTACH
521 on itself.
522 .It
523 The
524 .Fa request
525 argument
526 was not one of the legal requests.
527 .It
528 The signal number
529 (in
530 .Fa data )
531 to
532 .Dv PT_CONTINUE
533 was neither 0 nor a legal signal number.
534 .It
535 .Dv PT_GETREGS ,
536 .Dv PT_SETREGS ,
537 .Dv PT_GETFPREGS ,
538 .Dv PT_SETFPREGS ,
539 .Dv PT_GETDBREGS ,
540 or
541 .Dv PT_SETDBREGS
542 was attempted on a process with no valid register set.
543 (This is normally true only of system processes.)
544 .It
545 .Dv PT_VM_ENTRY
546 was given an invalid value for
547 .Fa pve_entry .
548 This can also be caused by changes to the VM map of the process.
549 .El
550 .It Bq Er EBUSY
551 .Bl -bullet -compact
552 .It
553 .Dv PT_ATTACH
554 was attempted on a process that was already being traced.
555 .It
556 A request attempted to manipulate a process that was being traced by
557 some process other than the one making the request.
558 .It
559 A request
560 (other than
561 .Dv PT_ATTACH )
562 specified a process that was not stopped.
563 .El
564 .It Bq Er EPERM
565 .Bl -bullet -compact
566 .It
567 A request
568 (other than
569 .Dv PT_ATTACH )
570 attempted to manipulate a process that was not being traced at all.
571 .It
572 An attempt was made to use
573 .Dv PT_ATTACH
574 on a process in violation of the requirements listed under
575 .Dv PT_ATTACH
576 above.
577 .El
578 .It Bq Er ENOENT
579 .Bl -bullet -compact
580 .It
581 .Dv PT_VM_ENTRY
582 previously returned the last entry of the memory map.
583 No more entries exist.
584 .El
585 .It Bq Er ENAMETOOLONG
586 .Bl -bullet -compact
587 .It
588 .Dv PT_VM_ENTRY
589 cannot return the pathname of the backing object because the buffer is not big
590 enough.
591 .Fa pve_pathlen
592 holds the minimum buffer size required on return.
593 .El
594 .El
595 .Sh SEE ALSO
596 .Xr execve 2 ,
597 .Xr sigaction 2 ,
598 .Xr wait 2 ,
599 .Xr execv 3 ,
600 .Xr i386_clr_watch 3 ,
601 .Xr i386_set_watch 3
602 .Sh HISTORY
603 The
604 .Fn ptrace
605 function appeared in
606 .At v7 .