ptrace.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. /* `ptrace' debugger support interface. Linux/ia64 version.
  2. Copyright (C) 2001 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; if not, write to the Free
  14. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  15. 02111-1307 USA. */
  16. #ifndef _SYS_PTRACE_H
  17. #define _SYS_PTRACE_H 1
  18. #include <features.h>
  19. #include <sys/ucontext.h>
  20. __BEGIN_DECLS
  21. /* Type of the REQUEST argument to `ptrace.' */
  22. enum __ptrace_request
  23. {
  24. /* Indicate that the process making this request should be traced.
  25. All signals received by this process can be intercepted by its
  26. parent, and its parent can use the other `ptrace' requests. */
  27. PTRACE_TRACEME = 0,
  28. #define PT_TRACE_ME PTRACE_TRACEME
  29. /* Return the word in the process's text space at address ADDR. */
  30. PTRACE_PEEKTEXT = 1,
  31. #define PT_READ_I PTRACE_PEEKTEXT
  32. /* Return the word in the process's data space at address ADDR. */
  33. PTRACE_PEEKDATA = 2,
  34. #define PT_READ_D PTRACE_PEEKDATA
  35. /* Return the word in the process's user area at offset ADDR. */
  36. PTRACE_PEEKUSER = 3,
  37. #define PT_READ_U PTRACE_PEEKUSER
  38. /* Write the word DATA into the process's text space at address ADDR. */
  39. PTRACE_POKETEXT = 4,
  40. #define PT_WRITE_I PTRACE_POKETEXT
  41. /* Write the word DATA into the process's data space at address ADDR. */
  42. PTRACE_POKEDATA = 5,
  43. #define PT_WRITE_D PTRACE_POKEDATA
  44. /* Write the word DATA into the process's user area at offset ADDR. */
  45. PTRACE_POKEUSER = 6,
  46. #define PT_WRITE_U PTRACE_POKEUSER
  47. /* Continue the process. */
  48. PTRACE_CONT = 7,
  49. #define PT_CONTINUE PTRACE_CONT
  50. /* Kill the process. */
  51. PTRACE_KILL = 8,
  52. #define PT_KILL PTRACE_KILL
  53. /* Single step the process.
  54. This is not supported on all machines. */
  55. PTRACE_SINGLESTEP = 9,
  56. #define PT_STEP PTRACE_SINGLESTEP
  57. /* Execute process until next taken branch. */
  58. PTRACE_SINGLEBLOCK = 12,
  59. #define PT_STEPBLOCK PTRACE_SINGLEBLOCK
  60. /* Get siginfo for process. */
  61. PTRACE_GETSIGINFO = 13,
  62. #define PT_GETSIGINFO PTRACE_GETSIGINFO
  63. /* Set new siginfo for process. */
  64. PTRACE_SETSIGINFO = 14,
  65. #define PT_GETSIGINFO PTRACE_GETSIGINFO
  66. /* Attach to a process that is already running. */
  67. PTRACE_ATTACH = 16,
  68. #define PT_ATTACH PTRACE_ATTACH
  69. /* Detach from a process attached to with PTRACE_ATTACH. */
  70. PTRACE_DETACH = 17,
  71. #define PT_DETACH PTRACE_DETACH
  72. /* Get all registers (pt_all_user_regs) in one shot */
  73. PTRACE_GETREGS = 18,
  74. #define PT_GETREGS PTRACE_GETREGS
  75. /* Set all registers (pt_all_user_regs) in one shot */
  76. PTRACE_SETREGS = 19,
  77. #define PT_SETREGS PTRACE_SETREGS
  78. /* Continue and stop at the next (return from) syscall. */
  79. PTRACE_SYSCALL = 24
  80. #define PT_SYSCALL PTRACE_SYSCALL
  81. };
  82. /* pt_all_user_regs is used for PTRACE_GETREGS/PTRACE_SETREGS. */
  83. struct pt_all_user_regs
  84. {
  85. unsigned long nat;
  86. unsigned long cr_iip;
  87. unsigned long cfm;
  88. unsigned long cr_ipsr;
  89. unsigned long pr;
  90. unsigned long gr[32];
  91. unsigned long br[8];
  92. unsigned long ar[128];
  93. struct ia64_fpreg fr[128];
  94. };
  95. /* Perform process tracing functions. REQUEST is one of the values
  96. above, and determines the action to be taken.
  97. For all requests except PTRACE_TRACEME, PID specifies the process to be
  98. traced.
  99. PID and the other arguments described above for the various requests should
  100. appear (those that are used for the particular request) as:
  101. pid_t PID, void *ADDR, int DATA, void *ADDR2
  102. after REQUEST. */
  103. extern long int ptrace (enum __ptrace_request __request, ...) __THROW;
  104. __END_DECLS
  105. #endif /* _SYS_PTRACE_H */