x86-linux-nat.c 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324
  1. /* Native-dependent code for GNU/Linux x86 (i386 and x86-64).
  2. Copyright (C) 1999-2022 Free Software Foundation, Inc.
  3. This file is part of GDB.
  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. #include "defs.h"
  15. #include "inferior.h"
  16. #include "elf/common.h"
  17. #include "gdb_proc_service.h"
  18. #include "nat/gdb_ptrace.h"
  19. #include <sys/user.h>
  20. #include <sys/procfs.h>
  21. #include <sys/uio.h>
  22. #include "x86-nat.h"
  23. #ifndef __x86_64__
  24. #include "i386-linux-nat.h"
  25. #endif
  26. #include "x86-linux-nat.h"
  27. #include "i386-linux-tdep.h"
  28. #ifdef __x86_64__
  29. #include "amd64-linux-tdep.h"
  30. #endif
  31. #include "gdbsupport/x86-xstate.h"
  32. #include "nat/linux-btrace.h"
  33. #include "nat/linux-nat.h"
  34. #include "nat/x86-linux.h"
  35. #include "nat/x86-linux-dregs.h"
  36. #include "nat/linux-ptrace.h"
  37. /* linux_nat_target::low_new_fork implementation. */
  38. void
  39. x86_linux_nat_target::low_new_fork (struct lwp_info *parent, pid_t child_pid)
  40. {
  41. pid_t parent_pid;
  42. struct x86_debug_reg_state *parent_state;
  43. struct x86_debug_reg_state *child_state;
  44. /* NULL means no watchpoint has ever been set in the parent. In
  45. that case, there's nothing to do. */
  46. if (parent->arch_private == NULL)
  47. return;
  48. /* Linux kernel before 2.6.33 commit
  49. 72f674d203cd230426437cdcf7dd6f681dad8b0d
  50. will inherit hardware debug registers from parent
  51. on fork/vfork/clone. Newer Linux kernels create such tasks with
  52. zeroed debug registers.
  53. GDB core assumes the child inherits the watchpoints/hw
  54. breakpoints of the parent, and will remove them all from the
  55. forked off process. Copy the debug registers mirrors into the
  56. new process so that all breakpoints and watchpoints can be
  57. removed together. The debug registers mirror will become zeroed
  58. in the end before detaching the forked off process, thus making
  59. this compatible with older Linux kernels too. */
  60. parent_pid = parent->ptid.pid ();
  61. parent_state = x86_debug_reg_state (parent_pid);
  62. child_state = x86_debug_reg_state (child_pid);
  63. *child_state = *parent_state;
  64. }
  65. x86_linux_nat_target::~x86_linux_nat_target ()
  66. {
  67. }
  68. /* Implement the virtual inf_ptrace_target::post_startup_inferior method. */
  69. void
  70. x86_linux_nat_target::post_startup_inferior (ptid_t ptid)
  71. {
  72. x86_cleanup_dregs ();
  73. linux_nat_target::post_startup_inferior (ptid);
  74. }
  75. #ifdef __x86_64__
  76. /* Value of CS segment register:
  77. 64bit process: 0x33
  78. 32bit process: 0x23 */
  79. #define AMD64_LINUX_USER64_CS 0x33
  80. /* Value of DS segment register:
  81. LP64 process: 0x0
  82. X32 process: 0x2b */
  83. #define AMD64_LINUX_X32_DS 0x2b
  84. #endif
  85. /* Get Linux/x86 target description from running target. */
  86. const struct target_desc *
  87. x86_linux_nat_target::read_description ()
  88. {
  89. int tid;
  90. int is_64bit = 0;
  91. #ifdef __x86_64__
  92. int is_x32;
  93. #endif
  94. static uint64_t xcr0;
  95. uint64_t xcr0_features_bits;
  96. tid = inferior_ptid.pid ();
  97. #ifdef __x86_64__
  98. {
  99. unsigned long cs;
  100. unsigned long ds;
  101. /* Get CS register. */
  102. errno = 0;
  103. cs = ptrace (PTRACE_PEEKUSER, tid,
  104. offsetof (struct user_regs_struct, cs), 0);
  105. if (errno != 0)
  106. perror_with_name (_("Couldn't get CS register"));
  107. is_64bit = cs == AMD64_LINUX_USER64_CS;
  108. /* Get DS register. */
  109. errno = 0;
  110. ds = ptrace (PTRACE_PEEKUSER, tid,
  111. offsetof (struct user_regs_struct, ds), 0);
  112. if (errno != 0)
  113. perror_with_name (_("Couldn't get DS register"));
  114. is_x32 = ds == AMD64_LINUX_X32_DS;
  115. if (sizeof (void *) == 4 && is_64bit && !is_x32)
  116. error (_("Can't debug 64-bit process with 32-bit GDB"));
  117. }
  118. #elif HAVE_PTRACE_GETFPXREGS
  119. if (have_ptrace_getfpxregs == -1)
  120. {
  121. elf_fpxregset_t fpxregs;
  122. if (ptrace (PTRACE_GETFPXREGS, tid, 0, (int) &fpxregs) < 0)
  123. {
  124. have_ptrace_getfpxregs = 0;
  125. have_ptrace_getregset = TRIBOOL_FALSE;
  126. return i386_linux_read_description (X86_XSTATE_X87_MASK);
  127. }
  128. }
  129. #endif
  130. if (have_ptrace_getregset == TRIBOOL_UNKNOWN)
  131. {
  132. uint64_t xstateregs[(X86_XSTATE_SSE_SIZE / sizeof (uint64_t))];
  133. struct iovec iov;
  134. iov.iov_base = xstateregs;
  135. iov.iov_len = sizeof (xstateregs);
  136. /* Check if PTRACE_GETREGSET works. */
  137. if (ptrace (PTRACE_GETREGSET, tid,
  138. (unsigned int) NT_X86_XSTATE, &iov) < 0)
  139. have_ptrace_getregset = TRIBOOL_FALSE;
  140. else
  141. {
  142. have_ptrace_getregset = TRIBOOL_TRUE;
  143. /* Get XCR0 from XSAVE extended state. */
  144. xcr0 = xstateregs[(I386_LINUX_XSAVE_XCR0_OFFSET
  145. / sizeof (uint64_t))];
  146. }
  147. }
  148. /* Check the native XCR0 only if PTRACE_GETREGSET is available. If
  149. PTRACE_GETREGSET is not available then set xcr0_features_bits to
  150. zero so that the "no-features" descriptions are returned by the
  151. switches below. */
  152. if (have_ptrace_getregset == TRIBOOL_TRUE)
  153. xcr0_features_bits = xcr0 & X86_XSTATE_ALL_MASK;
  154. else
  155. xcr0_features_bits = 0;
  156. if (is_64bit)
  157. {
  158. #ifdef __x86_64__
  159. return amd64_linux_read_description (xcr0_features_bits, is_x32);
  160. #endif
  161. }
  162. else
  163. {
  164. const struct target_desc * tdesc
  165. = i386_linux_read_description (xcr0_features_bits);
  166. if (tdesc == NULL)
  167. tdesc = i386_linux_read_description (X86_XSTATE_SSE_MASK);
  168. return tdesc;
  169. }
  170. gdb_assert_not_reached ("failed to return tdesc");
  171. }
  172. /* Enable branch tracing. */
  173. struct btrace_target_info *
  174. x86_linux_nat_target::enable_btrace (thread_info *tp,
  175. const struct btrace_config *conf)
  176. {
  177. struct btrace_target_info *tinfo = nullptr;
  178. ptid_t ptid = tp->ptid;
  179. try
  180. {
  181. tinfo = linux_enable_btrace (ptid, conf);
  182. }
  183. catch (const gdb_exception_error &exception)
  184. {
  185. error (_("Could not enable branch tracing for %s: %s"),
  186. target_pid_to_str (ptid).c_str (), exception.what ());
  187. }
  188. return tinfo;
  189. }
  190. /* Disable branch tracing. */
  191. void
  192. x86_linux_nat_target::disable_btrace (struct btrace_target_info *tinfo)
  193. {
  194. enum btrace_error errcode = linux_disable_btrace (tinfo);
  195. if (errcode != BTRACE_ERR_NONE)
  196. error (_("Could not disable branch tracing."));
  197. }
  198. /* Teardown branch tracing. */
  199. void
  200. x86_linux_nat_target::teardown_btrace (struct btrace_target_info *tinfo)
  201. {
  202. /* Ignore errors. */
  203. linux_disable_btrace (tinfo);
  204. }
  205. enum btrace_error
  206. x86_linux_nat_target::read_btrace (struct btrace_data *data,
  207. struct btrace_target_info *btinfo,
  208. enum btrace_read_type type)
  209. {
  210. return linux_read_btrace (data, btinfo, type);
  211. }
  212. /* See to_btrace_conf in target.h. */
  213. const struct btrace_config *
  214. x86_linux_nat_target::btrace_conf (const struct btrace_target_info *btinfo)
  215. {
  216. return linux_btrace_conf (btinfo);
  217. }
  218. /* Helper for ps_get_thread_area. Sets BASE_ADDR to a pointer to
  219. the thread local storage (or its descriptor) and returns PS_OK
  220. on success. Returns PS_ERR on failure. */
  221. ps_err_e
  222. x86_linux_get_thread_area (pid_t pid, void *addr, unsigned int *base_addr)
  223. {
  224. /* NOTE: cagney/2003-08-26: The definition of this buffer is found
  225. in the kernel header <asm-i386/ldt.h>. It, after padding, is 4 x
  226. 4 byte integers in size: `entry_number', `base_addr', `limit',
  227. and a bunch of status bits.
  228. The values returned by this ptrace call should be part of the
  229. regcache buffer, and ps_get_thread_area should channel its
  230. request through the regcache. That way remote targets could
  231. provide the value using the remote protocol and not this direct
  232. call.
  233. Is this function needed? I'm guessing that the `base' is the
  234. address of a descriptor that libthread_db uses to find the
  235. thread local address base that GDB needs. Perhaps that
  236. descriptor is defined by the ABI. Anyway, given that
  237. libthread_db calls this function without prompting (gdb
  238. requesting tls base) I guess it needs info in there anyway. */
  239. unsigned int desc[4];
  240. /* This code assumes that "int" is 32 bits and that
  241. GET_THREAD_AREA returns no more than 4 int values. */
  242. gdb_assert (sizeof (int) == 4);
  243. #ifndef PTRACE_GET_THREAD_AREA
  244. #define PTRACE_GET_THREAD_AREA 25
  245. #endif
  246. if (ptrace (PTRACE_GET_THREAD_AREA, pid, addr, &desc) < 0)
  247. return PS_ERR;
  248. *base_addr = desc[1];
  249. return PS_OK;
  250. }
  251. void _initialize_x86_linux_nat ();
  252. void
  253. _initialize_x86_linux_nat ()
  254. {
  255. /* Initialize the debug register function vectors. */
  256. x86_dr_low.set_control = x86_linux_dr_set_control;
  257. x86_dr_low.set_addr = x86_linux_dr_set_addr;
  258. x86_dr_low.get_addr = x86_linux_dr_get_addr;
  259. x86_dr_low.get_status = x86_linux_dr_get_status;
  260. x86_dr_low.get_control = x86_linux_dr_get_control;
  261. x86_set_debug_register_length (sizeof (void *));
  262. }