]> CyberLeo.Net >> Repos - FreeBSD/releng/9.0.git/blob - lib/libc/sys/ptrace.2
Copy stable/9 to releng/9.0 as part of the FreeBSD 9.0-RELEASE release
[FreeBSD/releng/9.0.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 January 23, 2011
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 .El
359 .It pl_sigmask
360 The current signal mask of the LWP
361 .It pl_siglist
362 The current pending set of signals for the LWP.
363 Note that signals that are delivered to the process would not appear
364 on an LWP siglist until the thread is selected for delivery.
365 .It pl_siginfo
366 The siginfo that accompanies the signal pending.
367 Only valid for
368 .Dv PL_EVENT_SIGNAL
369 stop when
370 .Dv PL_FLAG_SI
371 is set in
372 .Va pl_flags .
373 .It pl_tdname
374 The name of the thread.
375 .It pl_child_pid
376 The process identifier of the new child process.
377 Only valid for a
378 .Dv PL_EVENT_SIGNAL
379 stop when
380 .Dv PL_FLAG_FORKED
381 is set in
382 .Va pl_flags .
383 .El
384 .It PT_GETNUMLWPS
385 This request returns the number of kernel threads associated with the
386 traced process.
387 .It PT_GETLWPLIST
388 This request can be used to get the current thread list.
389 A pointer to an array of type
390 .Vt lwpid_t
391 should be passed in
392 .Fa addr ,
393 with the array size specified by
394 .Fa data .
395 The return value from
396 .Fn ptrace
397 is the count of array entries filled in.
398 .It PT_SETSTEP
399 This request will turn on single stepping of the specified process.
400 .It PT_CLEARSTEP
401 This request will turn off single stepping of the specified process.
402 .It PT_SUSPEND
403 This request will suspend the specified thread.
404 .It PT_RESUME
405 This request will resume the specified thread.
406 .It PT_TO_SCE
407 This request will trace the specified process on each system call entry.
408 .It PT_TO_SCX
409 This request will trace the specified process on each system call exit.
410 .It PT_SYSCALL
411 This request will trace the specified process
412 on each system call entry and exit.
413 .It PT_FOLLOW_FORK
414 This request controls tracing for new child processes of a traced process.
415 If
416 .Fa data
417 is non-zero,
418 then new child processes will enable tracing and stop before executing their
419 first instruction.
420 If
421 .Fa data
422 is zero, then new child processes will execute without tracing enabled.
423 By default, tracing is not enabled for new child processes.
424 Child processes do not inherit this property.
425 The traced process will set the
426 .Dv PL_FLAG_FORKED
427 flag upon exit from a system call that creates a new process.
428 .It PT_VM_TIMESTAMP
429 This request returns the generation number or timestamp of the memory map of
430 the traced process as the return value from
431 .Fn ptrace .
432 This provides a low-cost way for the tracing process to determine if the
433 VM map changed since the last time this request was made.
434 .It PT_VM_ENTRY
435 This request is used to iterate over the entries of the VM map of the traced
436 process.
437 The
438 .Fa addr
439 argument specifies a pointer to a 
440 .Vt "struct ptrace_vm_entry" ,
441 which is defined as follows:
442 .Bd -literal
443 struct ptrace_vm_entry {
444         int             pve_entry;
445         int             pve_timestamp;
446         u_long          pve_start;
447         u_long          pve_end;
448         u_long          pve_offset;
449         u_int           pve_prot;
450         u_int           pve_pathlen;
451         long            pve_fileid;
452         uint32_t        pve_fsid;
453         char            *pve_path;
454 };
455 .Ed
456 .Pp
457 The first entry is returned by setting
458 .Va pve_entry
459 to zero.
460 Subsequent entries are returned by leaving
461 .Va pve_entry
462 unmodified from the value returned by previous requests.
463 The
464 .Va pve_timestamp
465 field can be used to detect changes to the VM map while iterating over the
466 entries.
467 The tracing process can then take appropriate action, such as restarting.
468 By setting
469 .Va pve_pathlen
470 to a non-zero value on entry, the pathname of the backing object is returned
471 in the buffer pointed to by
472 .Va pve_path ,
473 provided the entry is backed by a vnode.
474 The
475 .Va pve_pathlen
476 field is updated with the actual length of the pathname (including the
477 terminating null character).
478 The
479 .Va pve_offset
480 field is the offset within the backing object at which the range starts.
481 The range is located in the VM space at
482 .Va pve_start
483 and extends up to
484 .Va pve_end
485 (inclusive).
486 .Pp
487 The
488 .Fa data
489 argument is ignored.
490 .El
491 .Pp
492 Additionally, machine-specific requests can exist.
493 .Sh RETURN VALUES
494 Some requests can cause
495 .Fn ptrace
496 to return
497 \-1
498 as a non-error value; to disambiguate,
499 .Va errno
500 can be set to 0 before the call and checked afterwards.
501 .Sh ERRORS
502 The
503 .Fn ptrace
504 system call may fail if:
505 .Bl -tag -width Er
506 .It Bq Er ESRCH
507 .Bl -bullet -compact
508 .It
509 No process having the specified process ID exists.
510 .El
511 .It Bq Er EINVAL
512 .Bl -bullet -compact
513 .It
514 A process attempted to use
515 .Dv PT_ATTACH
516 on itself.
517 .It
518 The
519 .Fa request
520 argument
521 was not one of the legal requests.
522 .It
523 The signal number
524 (in
525 .Fa data )
526 to
527 .Dv PT_CONTINUE
528 was neither 0 nor a legal signal number.
529 .It
530 .Dv PT_GETREGS ,
531 .Dv PT_SETREGS ,
532 .Dv PT_GETFPREGS ,
533 .Dv PT_SETFPREGS ,
534 .Dv PT_GETDBREGS ,
535 or
536 .Dv PT_SETDBREGS
537 was attempted on a process with no valid register set.
538 (This is normally true only of system processes.)
539 .It
540 .Dv PT_VM_ENTRY
541 was given an invalid value for
542 .Fa pve_entry .
543 This can also be caused by changes to the VM map of the process.
544 .El
545 .It Bq Er EBUSY
546 .Bl -bullet -compact
547 .It
548 .Dv PT_ATTACH
549 was attempted on a process that was already being traced.
550 .It
551 A request attempted to manipulate a process that was being traced by
552 some process other than the one making the request.
553 .It
554 A request
555 (other than
556 .Dv PT_ATTACH )
557 specified a process that was not stopped.
558 .El
559 .It Bq Er EPERM
560 .Bl -bullet -compact
561 .It
562 A request
563 (other than
564 .Dv PT_ATTACH )
565 attempted to manipulate a process that was not being traced at all.
566 .It
567 An attempt was made to use
568 .Dv PT_ATTACH
569 on a process in violation of the requirements listed under
570 .Dv PT_ATTACH
571 above.
572 .El
573 .It Bq Er ENOENT
574 .Bl -bullet -compact
575 .It
576 .Dv PT_VM_ENTRY
577 previously returned the last entry of the memory map.
578 No more entries exist.
579 .El
580 .It Bq Er ENAMETOOLONG
581 .Bl -bullet -compact
582 .It
583 .Dv PT_VM_ENTRY
584 cannot return the pathname of the backing object because the buffer is not big
585 enough.
586 .Fa pve_pathlen
587 holds the minimum buffer size required on return.
588 .El
589 .El
590 .Sh SEE ALSO
591 .Xr execve 2 ,
592 .Xr sigaction 2 ,
593 .Xr wait 2 ,
594 .Xr execv 3 ,
595 .Xr i386_clr_watch 3 ,
596 .Xr i386_set_watch 3
597 .Sh HISTORY
598 The
599 .Fn ptrace
600 function appeared in
601 .At v7 .
602 .Sh BUGS
603 The
604 .Dv PL_FLAG_FORKED ,
605 .Dv PL_FLAG_SCE ,
606 .Dv PL_FLAG_SCX
607 and
608 .Dv PL_FLAG_EXEC
609 are not implemented for MIPS and ARM architectures.