gnu-nat.h 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. /* Common things used by the various *gnu-nat.c files
  2. Copyright (C) 1995-2022 Free Software Foundation, Inc.
  3. Written by Miles Bader <miles@gnu.ai.mit.edu>
  4. This program is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 3 of the License, or
  7. (at your option) any later version.
  8. This program 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
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program. If not, see <http://www.gnu.org/licenses/>. */
  14. #ifndef GNU_NAT_H
  15. #define GNU_NAT_H
  16. #include "defs.h"
  17. /* Work around conflict between Mach's 'thread_info' function, and GDB's
  18. 'thread_info' class. Make the former available as 'mach_thread_info'. */
  19. #define thread_info mach_thread_info
  20. /* Mach headers are not yet ready for C++ compilation. */
  21. extern "C"
  22. {
  23. #include <mach.h>
  24. }
  25. #undef thread_info
  26. /* Divert 'mach_thread_info' to the original Mach 'thread_info' function. */
  27. extern __typeof__ (mach_thread_info) mach_thread_info asm ("thread_info");
  28. #include <unistd.h>
  29. #include "inf-child.h"
  30. struct inf;
  31. extern struct inf *gnu_current_inf;
  32. /* Converts a GDB pid to a struct proc. */
  33. struct proc *inf_tid_to_thread (struct inf *inf, int tid);
  34. typedef void (inf_threads_ftype) (struct proc *thread, void *arg);
  35. /* Call F for every thread in inferior INF, passing ARG as second parameter. */
  36. void inf_threads (struct inf *inf, inf_threads_ftype *f, void *arg);
  37. /* Makes sure that INF's thread list is synced with the actual process. */
  38. int inf_update_procs (struct inf *inf);
  39. /* A proc is either a thread, or the task (there can only be one task proc
  40. because it always has the same TID, PROC_TID_TASK). */
  41. struct proc
  42. {
  43. thread_t port; /* The task or thread port. */
  44. int tid; /* The GDB pid (actually a thread id). */
  45. int num; /* An id number for threads, to print. */
  46. mach_port_t saved_exc_port; /* The task/thread's real exception port. */
  47. mach_port_t exc_port; /* Our replacement, which for. */
  48. int sc; /* Desired suspend count. */
  49. int cur_sc; /* Implemented suspend count. */
  50. int run_sc; /* Default sc when the program is running. */
  51. int pause_sc; /* Default sc when gdb has control. */
  52. int resume_sc; /* Sc resulting from the last resume. */
  53. int detach_sc; /* SC to leave around when detaching
  54. from program. */
  55. thread_state_data_t state; /* Registers, &c. */
  56. int state_valid:1; /* True if STATE is up to date. */
  57. int state_changed:1;
  58. int aborted:1; /* True if thread_abort has been called. */
  59. int dead:1; /* We happen to know it's actually dead. */
  60. /* Bit mask of registers fetched by gdb. This is used when we re-fetch
  61. STATE after aborting the thread, to detect that gdb may have out-of-date
  62. information. */
  63. unsigned long fetched_regs;
  64. struct inf *inf; /* Where we come from. */
  65. struct proc *next;
  66. };
  67. /* The task has a thread entry with this TID. */
  68. #define PROC_TID_TASK (-1)
  69. #define proc_is_task(proc) ((proc)->tid == PROC_TID_TASK)
  70. #define proc_is_thread(proc) ((proc)->tid != PROC_TID_TASK)
  71. extern int __proc_pid (struct proc *proc);
  72. /* Return printable description of proc. */
  73. extern char *proc_string (struct proc *proc);
  74. #define proc_debug(_proc, msg, args...) \
  75. do { struct proc *__proc = (_proc); \
  76. debug ("{proc %d/%d %s}: " msg, \
  77. __proc_pid (__proc), __proc->tid, \
  78. host_address_to_string (__proc) , ##args); } while (0)
  79. extern bool gnu_debug_flag;
  80. #define debug(msg, args...) \
  81. do { if (gnu_debug_flag) \
  82. gdb_printf (gdb_stdlog, "%s:%d: " msg "\r\n", \
  83. __FILE__ , __LINE__ , ##args); } while (0)
  84. /* A prototype generic GNU/Hurd target. The client can override it
  85. with local methods. */
  86. struct gnu_nat_target : public inf_child_target
  87. {
  88. void attach (const char *, int) override;
  89. bool attach_no_wait () override
  90. { return true; }
  91. void detach (inferior *, int) override;
  92. void resume (ptid_t, int, enum gdb_signal) override;
  93. ptid_t wait (ptid_t, struct target_waitstatus *, target_wait_flags) override;
  94. enum target_xfer_status xfer_partial (enum target_object object,
  95. const char *annex,
  96. gdb_byte *readbuf,
  97. const gdb_byte *writebuf,
  98. ULONGEST offset, ULONGEST len,
  99. ULONGEST *xfered_len) override;
  100. int find_memory_regions (find_memory_region_ftype func, void *data)
  101. override;
  102. void kill () override;
  103. void create_inferior (const char *, const std::string &,
  104. char **, int) override;
  105. void mourn_inferior () override;
  106. bool thread_alive (ptid_t ptid) override;
  107. std::string pid_to_str (ptid_t) override;
  108. void stop (ptid_t) override;
  109. void inf_validate_procs (struct inf *inf);
  110. void inf_suspend (struct inf *inf);
  111. void inf_set_traced (struct inf *inf, int on);
  112. void steal_exc_port (struct proc *proc, mach_port_t name);
  113. /* Make sure that the state field in PROC is up to date, and return a
  114. pointer to it, or 0 if something is wrong. If WILL_MODIFY is true,
  115. makes sure that the thread is stopped and aborted first, and sets
  116. the state_changed field in PROC to true. */
  117. thread_state_t proc_get_state (struct proc *proc, int will_modify);
  118. private:
  119. void inf_clear_wait (struct inf *inf);
  120. void inf_cleanup (struct inf *inf);
  121. void inf_startup (struct inf *inf, int pid);
  122. int inf_update_suspends (struct inf *inf);
  123. void inf_set_pid (struct inf *inf, pid_t pid);
  124. void inf_steal_exc_ports (struct inf *inf);
  125. void inf_validate_procinfo (struct inf *inf);
  126. void inf_validate_task_sc (struct inf *inf);
  127. void inf_restore_exc_ports (struct inf *inf);
  128. void inf_set_threads_resume_sc (struct inf *inf,
  129. struct proc *run_thread,
  130. int run_others);
  131. int inf_set_threads_resume_sc_for_signal_thread (struct inf *inf);
  132. void inf_resume (struct inf *inf);
  133. void inf_set_step_thread (struct inf *inf, struct proc *proc);
  134. void inf_detach (struct inf *inf);
  135. void inf_attach (struct inf *inf, int pid);
  136. void inf_signal (struct inf *inf, enum gdb_signal sig);
  137. void inf_continue (struct inf *inf);
  138. struct proc *make_proc (struct inf *inf, mach_port_t port, int tid);
  139. void proc_abort (struct proc *proc, int force);
  140. struct proc *_proc_free (struct proc *proc);
  141. int proc_update_sc (struct proc *proc);
  142. kern_return_t proc_get_exception_port (struct proc *proc, mach_port_t * port);
  143. kern_return_t proc_set_exception_port (struct proc *proc, mach_port_t port);
  144. mach_port_t _proc_get_exc_port (struct proc *proc);
  145. void proc_steal_exc_port (struct proc *proc, mach_port_t exc_port);
  146. void proc_restore_exc_port (struct proc *proc);
  147. int proc_trace (struct proc *proc, int set);
  148. };
  149. /* The final/concrete instance. */
  150. extern gnu_nat_target *gnu_target;
  151. #endif /* GNU_NAT_H */