PTRACE.2
上传用户:jnzhq888
上传日期:2007-01-18
资源大小:51694k
文件大小:7k
源码类别:

操作系统开发

开发平台:

WINDOWS

  1. PTRACE(2)                 Minix Programmer's Manual                  PTRACE(2)
  2. NAME
  3.      ptrace - process trace
  4. SYNOPSIS
  5.      #include <sys/types.h>
  6.      #include <sys/signal.h>
  7.      #include <sys/ptrace.h>
  8.      int ptrace(int request, pid_t pid, long addr, long data)
  9. DESCRIPTION
  10.      Note: This manual page has no  relation  to  Minix.   Someone  who  knows
  11.      ptrace() has to check, or rewrite, this page.  (kjb)
  12.      Ptrace provides a means  by  which  a  parent  process  may  control  the
  13.      execution of a child process, and examine and change its core image.  Its
  14.      primary use is for the implementation of breakpoint debugging.  There are
  15.      four  arguments  whose  interpretation  depends  on  a  request argument.
  16.      Generally, pid is the process ID of the traced process, which must  be  a
  17.      child  (no  more  distant  descendant) of the tracing process.  A process
  18.      being traced behaves normally until it  encounters  some  signal  whether
  19.      internally  generated  like "illegal instruction" or externally generated
  20.      like "interrupt".  See  sigaction(2)  for  the  list.   Then  the  traced
  21.      process  enters  a  stopped state and its parent is notified via wait(2).
  22.      When the child is in the stopped state, its core image  can  be  examined
  23.      and  modified  using ptrace.  If desired, another ptrace request can then
  24.      cause the child either to terminate or to continue, possibly ignoring the
  25.      signal.
  26.      The value of the request argument determines the precise  action  of  the
  27.      call:
  28.      PT_TRACE_ME
  29.          This request is the only one used by the child process;  it  declares
  30.          that  the  process  is  to  be  traced  by its parent.  All the other
  31.          arguments are ignored.  Peculiar results will  ensue  if  the  parent
  32.          does not expect to trace the child.
  33.      PT_READ_I, PT_READ_D
  34.          The word in the child process's address space at  addr  is  returned.
  35.          If  I  and  D  space  are  separated (e.g. historically on a pdp-11),
  36.          request PT_READ_I indicates I space, PT_READ_D D space.  Addr must be
  37.          even on some machines.  The child must be stopped.  The input data is
  38.          ignored.
  39.      PT_READ_U
  40.          The word of the system's per-process data area corresponding to  addr
  41.          is  returned.   Addr must be even on some machines and less than 512.
  42.          This space contains the registers and  other  information  about  the
  43.          process; its layout corresponds to the user structure in the system.
  44. 4BSD                              May 23, 1986                               1
  45. PTRACE(2)                 Minix Programmer's Manual                  PTRACE(2)
  46.      PT_WRITE_I, PT_WRITE_D
  47.          The given data is written at the word in the process's address  space
  48.          corresponding  to  addr,  which  must  be  even on some machines.  No
  49.          useful value is returned.  If I and D space  are  separated,  request
  50.          PT_WRITE_I  indicates I space, PT_WRITE_D D space.  Attempts to write
  51.          in pure procedure fail if another process is executing the same file.
  52.      PT_WRITE_U
  53.          The process's system data is written, as  it  is  read  with  request
  54.          PT_READ_U.   Only  a  few  locations can be written in this way:  the
  55.          general registers, the  floating  point  status  and  registers,  and
  56.          certain bits of the processor status word.
  57.      PT_CONTINUE
  58.          The data argument is  taken  as  a  signal  number  and  the  child's
  59.          execution  continues  at  location  addr  as  if it had incurred that
  60.          signal.  Normally the signal number will be either 0 to indicate that
  61.          the  signal  that  caused  the  stop should be ignored, or that value
  62.          fetched out of the process's image indicating which signal caused the
  63.          stop.   If  addr  is  (int *)1 then execution continues from where it
  64.          stopped.
  65.      PT_KILL
  66.          The traced process terminates.
  67.      PT_STEP
  68.          Execution continues as in request PT_CONTINUE; however,  as  soon  as
  69.          possible after execution of at least one instruction, execution stops
  70.          again.  The signal number from the stop is SIGTRAP.  (On  the  VAX-11
  71.          the  T-bit  is  used  and just one instruction is executed.)  This is
  72.          part of the mechanism for implementing breakpoints.
  73.      As indicated, these calls (except for request PT_TRACE_ME)  can  be  used
  74.      only  when  the  subject  process  has stopped.  The wait call is used to
  75.      determine when a process stops; in such a case the  "termination"  status
  76.      returned  by  wait  has  the  value 0177 to indicate stoppage rather than
  77.      genuine termination.
  78.      To forestall possible fraud, ptrace inhibits  the  set-user-id  and  set-
  79.      group-id  facilities  on subsequent execve(2) calls.  If a traced process
  80.      calls execve, it will stop before executing the first instruction of  the
  81.      new image showing signal SIGTRAP.
  82.      On a  VAX-11,  "word"  also  means  a  32-bit  integer,  but  the  "even"
  83.      restriction does not apply.
  84. 4BSD                              May 23, 1986                               2
  85. PTRACE(2)                 Minix Programmer's Manual                  PTRACE(2)
  86. RETURN VALUE
  87.      A 0 value is returned if the call succeeds.  If the call fails then a  -1
  88.      is returned and the global variable errno is set to indicate the error.
  89. ERRORS
  90.      [EIO]          The request code is invalid.
  91.      [ESRCH]        The specified process does not exist.
  92.      [EIO]          The given signal number is invalid.
  93.      [EIO]          The specified address is out of bounds.
  94.      [EPERM]        The specified process cannot be traced.
  95. SEE ALSO
  96.      wait(2), sigaction(2), mdb(1).
  97. BUGS
  98.      Ptrace is unique and arcane; it should be replaced with  a  special  file
  99.      that  can  be  opened  and read and written.  The control functions could
  100.      then be implemented with ioctl(2) calls on  this  file.   This  would  be
  101.      simpler to understand and have much higher performance.
  102.      The request PT_TRACE_ME call should be able to specify signals  that  are
  103.      to  be  treated normally and not cause a stop.  In this way, for example,
  104.      programs with simulated floating point (which use  "illegal  instruction"
  105.      signals at a very high rate) could be efficiently debugged.
  106.      The error indication, -1, is a legitimate  function  value;  errno,  (see
  107.      intro(2)), can be used to disambiguate.
  108.      It should be possible to stop a process on occurrence of a  system  call;
  109.      in this way a completely controlled environment could be provided.
  110. 4BSD                              May 23, 1986                               3