ptrace.h 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  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, see
  14. <http://www.gnu.org/licenses/>. */
  15. #ifndef _SYS_PTRACE_H
  16. #define _SYS_PTRACE_H 1
  17. #include <features.h>
  18. #include <sys/ucontext.h>
  19. __BEGIN_DECLS
  20. /* Type of the REQUEST argument to `ptrace.' */
  21. enum __ptrace_request
  22. {
  23. /* Indicate that the process making this request should be traced.
  24. All signals received by this process can be intercepted by its
  25. parent, and its parent can use the other `ptrace' requests. */
  26. PTRACE_TRACEME = 0,
  27. #define PT_TRACE_ME PTRACE_TRACEME
  28. /* Return the word in the process's text space at address ADDR. */
  29. PTRACE_PEEKTEXT = 1,
  30. #define PT_READ_I PTRACE_PEEKTEXT
  31. /* Return the word in the process's data space at address ADDR. */
  32. PTRACE_PEEKDATA = 2,
  33. #define PT_READ_D PTRACE_PEEKDATA
  34. /* Return the word in the process's user area at offset ADDR. */
  35. PTRACE_PEEKUSER = 3,
  36. #define PT_READ_U PTRACE_PEEKUSER
  37. /* Write the word DATA into the process's text space at address ADDR. */
  38. PTRACE_POKETEXT = 4,
  39. #define PT_WRITE_I PTRACE_POKETEXT
  40. /* Write the word DATA into the process's data space at address ADDR. */
  41. PTRACE_POKEDATA = 5,
  42. #define PT_WRITE_D PTRACE_POKEDATA
  43. /* Write the word DATA into the process's user area at offset ADDR. */
  44. PTRACE_POKEUSER = 6,
  45. #define PT_WRITE_U PTRACE_POKEUSER
  46. /* Continue the process. */
  47. PTRACE_CONT = 7,
  48. #define PT_CONTINUE PTRACE_CONT
  49. /* Kill the process. */
  50. PTRACE_KILL = 8,
  51. #define PT_KILL PTRACE_KILL
  52. /* Single step the process.
  53. This is not supported on all machines. */
  54. PTRACE_SINGLESTEP = 9,
  55. #define PT_STEP PTRACE_SINGLESTEP
  56. /* Execute process until next taken branch. */
  57. PTRACE_SINGLEBLOCK = 12,
  58. #define PT_STEPBLOCK PTRACE_SINGLEBLOCK
  59. /* Get siginfo for process. */
  60. PTRACE_GETSIGINFO = 13,
  61. #define PT_GETSIGINFO PTRACE_GETSIGINFO
  62. /* Set new siginfo for process. */
  63. PTRACE_SETSIGINFO = 14,
  64. #define PT_GETSIGINFO PTRACE_GETSIGINFO
  65. /* Attach to a process that is already running. */
  66. PTRACE_ATTACH = 16,
  67. #define PT_ATTACH PTRACE_ATTACH
  68. /* Detach from a process attached to with PTRACE_ATTACH. */
  69. PTRACE_DETACH = 17,
  70. #define PT_DETACH PTRACE_DETACH
  71. /* Get all registers (pt_all_user_regs) in one shot */
  72. PTRACE_GETREGS = 18,
  73. #define PT_GETREGS PTRACE_GETREGS
  74. /* Set all registers (pt_all_user_regs) in one shot */
  75. PTRACE_SETREGS = 19,
  76. #define PT_SETREGS PTRACE_SETREGS
  77. /* Continue and stop at the next (return from) syscall. */
  78. PTRACE_SYSCALL = 24
  79. #define PT_SYSCALL PTRACE_SYSCALL
  80. };
  81. /* pt_all_user_regs is used for PTRACE_GETREGS/PTRACE_SETREGS. */
  82. struct pt_all_user_regs
  83. {
  84. unsigned long nat;
  85. unsigned long cr_iip;
  86. unsigned long cfm;
  87. unsigned long cr_ipsr;
  88. unsigned long pr;
  89. unsigned long gr[32];
  90. unsigned long br[8];
  91. unsigned long ar[128];
  92. struct ia64_fpreg fr[128];
  93. };
  94. /* Perform process tracing functions. REQUEST is one of the values
  95. above, and determines the action to be taken.
  96. For all requests except PTRACE_TRACEME, PID specifies the process to be
  97. traced.
  98. PID and the other arguments described above for the various requests should
  99. appear (those that are used for the particular request) as:
  100. pid_t PID, void *ADDR, int DATA, void *ADDR2
  101. after REQUEST. */
  102. extern long int ptrace (enum __ptrace_request __request, ...) __THROW;
  103. __END_DECLS
  104. #endif /* _SYS_PTRACE_H */