amd64-obsd-tdep.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462
  1. /* Target-dependent code for OpenBSD/amd64.
  2. Copyright (C) 2003-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 "frame.h"
  16. #include "frame-unwind.h"
  17. #include "gdbcore.h"
  18. #include "symtab.h"
  19. #include "objfiles.h"
  20. #include "osabi.h"
  21. #include "regcache.h"
  22. #include "regset.h"
  23. #include "target.h"
  24. #include "trad-frame.h"
  25. #include "obsd-tdep.h"
  26. #include "amd64-tdep.h"
  27. #include "i387-tdep.h"
  28. #include "gdbsupport/x86-xstate.h"
  29. #include "solib-svr4.h"
  30. #include "bsd-uthread.h"
  31. /* Support for signal handlers. */
  32. /* Default page size. */
  33. static const int amd64obsd_page_size = 4096;
  34. /* Return whether THIS_FRAME corresponds to an OpenBSD sigtramp
  35. routine. */
  36. static int
  37. amd64obsd_sigtramp_p (struct frame_info *this_frame)
  38. {
  39. CORE_ADDR pc = get_frame_pc (this_frame);
  40. CORE_ADDR start_pc = (pc & ~(amd64obsd_page_size - 1));
  41. const gdb_byte osigreturn[] =
  42. {
  43. 0x48, 0xc7, 0xc0,
  44. 0x67, 0x00, 0x00, 0x00, /* movq $SYS_sigreturn, %rax */
  45. 0xcd, 0x80 /* int $0x80 */
  46. };
  47. const gdb_byte sigreturn[] =
  48. {
  49. 0x48, 0xc7, 0xc0,
  50. 0x67, 0x00, 0x00, 0x00, /* movq $SYS_sigreturn, %rax */
  51. 0x0f, 0x05 /* syscall */
  52. };
  53. size_t buflen = (sizeof sigreturn) + 1;
  54. gdb_byte *buf;
  55. const char *name;
  56. /* If the function has a valid symbol name, it isn't a
  57. trampoline. */
  58. find_pc_partial_function (pc, &name, NULL, NULL);
  59. if (name != NULL)
  60. return 0;
  61. /* If the function lives in a valid section (even without a starting
  62. point) it isn't a trampoline. */
  63. if (find_pc_section (pc) != NULL)
  64. return 0;
  65. /* If we can't read the instructions at START_PC, return zero. */
  66. buf = (gdb_byte *) alloca ((sizeof sigreturn) + 1);
  67. if (!safe_frame_unwind_memory (this_frame, start_pc + 6, {buf, buflen}))
  68. return 0;
  69. /* Check for sigreturn(2). Depending on how the assembler encoded
  70. the `movq %rsp, %rdi' instruction, the code starts at offset 6 or
  71. 7. OpenBSD 5.0 and later use the `syscall' instruction. Older
  72. versions use `int $0x80'. Check for both. */
  73. if (memcmp (buf, sigreturn, sizeof sigreturn)
  74. && memcmp (buf + 1, sigreturn, sizeof sigreturn)
  75. && memcmp (buf, osigreturn, sizeof osigreturn)
  76. && memcmp (buf + 1, osigreturn, sizeof osigreturn))
  77. return 0;
  78. return 1;
  79. }
  80. /* Assuming THIS_FRAME is for a BSD sigtramp routine, return the
  81. address of the associated sigcontext structure. */
  82. static CORE_ADDR
  83. amd64obsd_sigcontext_addr (struct frame_info *this_frame)
  84. {
  85. CORE_ADDR pc = get_frame_pc (this_frame);
  86. ULONGEST offset = (pc & (amd64obsd_page_size - 1));
  87. /* The %rsp register points at `struct sigcontext' upon entry of a
  88. signal trampoline. The relevant part of the trampoline is
  89. call *%rax
  90. movq %rsp, %rdi
  91. pushq %rdi
  92. movq $SYS_sigreturn,%rax
  93. int $0x80
  94. (see /usr/src/sys/arch/amd64/amd64/locore.S). The `pushq'
  95. instruction clobbers %rsp, but its value is saved in `%rdi'. */
  96. if (offset > 5)
  97. return get_frame_register_unsigned (this_frame, AMD64_RDI_REGNUM);
  98. else
  99. return get_frame_register_unsigned (this_frame, AMD64_RSP_REGNUM);
  100. }
  101. /* OpenBSD 3.5 or later. */
  102. /* Mapping between the general-purpose registers in `struct reg'
  103. format and GDB's register cache layout. */
  104. /* From <machine/reg.h>. */
  105. int amd64obsd_r_reg_offset[] =
  106. {
  107. 14 * 8, /* %rax */
  108. 13 * 8, /* %rbx */
  109. 3 * 8, /* %rcx */
  110. 2 * 8, /* %rdx */
  111. 1 * 8, /* %rsi */
  112. 0 * 8, /* %rdi */
  113. 12 * 8, /* %rbp */
  114. 15 * 8, /* %rsp */
  115. 4 * 8, /* %r8 .. */
  116. 5 * 8,
  117. 6 * 8,
  118. 7 * 8,
  119. 8 * 8,
  120. 9 * 8,
  121. 10 * 8,
  122. 11 * 8, /* ... %r15 */
  123. 16 * 8, /* %rip */
  124. 17 * 8, /* %eflags */
  125. 18 * 8, /* %cs */
  126. 19 * 8, /* %ss */
  127. 20 * 8, /* %ds */
  128. 21 * 8, /* %es */
  129. 22 * 8, /* %fs */
  130. 23 * 8 /* %gs */
  131. };
  132. /* From <machine/signal.h>. */
  133. static int amd64obsd_sc_reg_offset[] =
  134. {
  135. 14 * 8, /* %rax */
  136. 13 * 8, /* %rbx */
  137. 3 * 8, /* %rcx */
  138. 2 * 8, /* %rdx */
  139. 1 * 8, /* %rsi */
  140. 0 * 8, /* %rdi */
  141. 12 * 8, /* %rbp */
  142. 24 * 8, /* %rsp */
  143. 4 * 8, /* %r8 ... */
  144. 5 * 8,
  145. 6 * 8,
  146. 7 * 8,
  147. 8 * 8,
  148. 9 * 8,
  149. 10 * 8,
  150. 11 * 8, /* ... %r15 */
  151. 21 * 8, /* %rip */
  152. 23 * 8, /* %eflags */
  153. 22 * 8, /* %cs */
  154. 25 * 8, /* %ss */
  155. 18 * 8, /* %ds */
  156. 17 * 8, /* %es */
  157. 16 * 8, /* %fs */
  158. 15 * 8 /* %gs */
  159. };
  160. /* From /usr/src/lib/libpthread/arch/amd64/uthread_machdep.c. */
  161. static int amd64obsd_uthread_reg_offset[] =
  162. {
  163. 19 * 8, /* %rax */
  164. 16 * 8, /* %rbx */
  165. 18 * 8, /* %rcx */
  166. 17 * 8, /* %rdx */
  167. 14 * 8, /* %rsi */
  168. 13 * 8, /* %rdi */
  169. 15 * 8, /* %rbp */
  170. -1, /* %rsp */
  171. 12 * 8, /* %r8 ... */
  172. 11 * 8,
  173. 10 * 8,
  174. 9 * 8,
  175. 8 * 8,
  176. 7 * 8,
  177. 6 * 8,
  178. 5 * 8, /* ... %r15 */
  179. 20 * 8, /* %rip */
  180. 4 * 8, /* %eflags */
  181. 21 * 8, /* %cs */
  182. -1, /* %ss */
  183. 3 * 8, /* %ds */
  184. 2 * 8, /* %es */
  185. 1 * 8, /* %fs */
  186. 0 * 8 /* %gs */
  187. };
  188. /* Offset within the thread structure where we can find the saved
  189. stack pointer (%esp). */
  190. #define AMD64OBSD_UTHREAD_RSP_OFFSET 400
  191. static void
  192. amd64obsd_supply_uthread (struct regcache *regcache,
  193. int regnum, CORE_ADDR addr)
  194. {
  195. struct gdbarch *gdbarch = regcache->arch ();
  196. enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
  197. CORE_ADDR sp_addr = addr + AMD64OBSD_UTHREAD_RSP_OFFSET;
  198. CORE_ADDR sp = 0;
  199. gdb_byte buf[8];
  200. int i;
  201. gdb_assert (regnum >= -1);
  202. if (regnum == -1 || regnum == AMD64_RSP_REGNUM)
  203. {
  204. int offset;
  205. /* Fetch stack pointer from thread structure. */
  206. sp = read_memory_unsigned_integer (sp_addr, 8, byte_order);
  207. /* Adjust the stack pointer such that it looks as if we just
  208. returned from _thread_machdep_switch. */
  209. offset = amd64obsd_uthread_reg_offset[AMD64_RIP_REGNUM] + 8;
  210. store_unsigned_integer (buf, 8, byte_order, sp + offset);
  211. regcache->raw_supply (AMD64_RSP_REGNUM, buf);
  212. }
  213. for (i = 0; i < ARRAY_SIZE (amd64obsd_uthread_reg_offset); i++)
  214. {
  215. if (amd64obsd_uthread_reg_offset[i] != -1
  216. && (regnum == -1 || regnum == i))
  217. {
  218. /* Fetch stack pointer from thread structure (if we didn't
  219. do so already). */
  220. if (sp == 0)
  221. sp = read_memory_unsigned_integer (sp_addr, 8, byte_order);
  222. /* Read the saved register from the stack frame. */
  223. read_memory (sp + amd64obsd_uthread_reg_offset[i], buf, 8);
  224. regcache->raw_supply (i, buf);
  225. }
  226. }
  227. }
  228. static void
  229. amd64obsd_collect_uthread (const struct regcache *regcache,
  230. int regnum, CORE_ADDR addr)
  231. {
  232. struct gdbarch *gdbarch = regcache->arch ();
  233. enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
  234. CORE_ADDR sp_addr = addr + AMD64OBSD_UTHREAD_RSP_OFFSET;
  235. CORE_ADDR sp = 0;
  236. gdb_byte buf[8];
  237. int i;
  238. gdb_assert (regnum >= -1);
  239. if (regnum == -1 || regnum == AMD64_RSP_REGNUM)
  240. {
  241. int offset;
  242. /* Calculate the stack pointer (frame pointer) that will be
  243. stored into the thread structure. */
  244. offset = amd64obsd_uthread_reg_offset[AMD64_RIP_REGNUM] + 8;
  245. regcache->raw_collect (AMD64_RSP_REGNUM, buf);
  246. sp = extract_unsigned_integer (buf, 8, byte_order) - offset;
  247. /* Store the stack pointer. */
  248. write_memory_unsigned_integer (sp_addr, 8, byte_order, sp);
  249. /* The stack pointer was (potentially) modified. Make sure we
  250. build a proper stack frame. */
  251. regnum = -1;
  252. }
  253. for (i = 0; i < ARRAY_SIZE (amd64obsd_uthread_reg_offset); i++)
  254. {
  255. if (amd64obsd_uthread_reg_offset[i] != -1
  256. && (regnum == -1 || regnum == i))
  257. {
  258. /* Fetch stack pointer from thread structure (if we didn't
  259. calculate it already). */
  260. if (sp == 0)
  261. sp = read_memory_unsigned_integer (sp_addr, 8, byte_order);
  262. /* Write the register into the stack frame. */
  263. regcache->raw_collect (i, buf);
  264. write_memory (sp + amd64obsd_uthread_reg_offset[i], buf, 8);
  265. }
  266. }
  267. }
  268. /* Kernel debugging support. */
  269. /* From <machine/frame.h>. Easy since `struct trapframe' matches
  270. `struct sigcontext'. */
  271. #define amd64obsd_tf_reg_offset amd64obsd_sc_reg_offset
  272. static struct trad_frame_cache *
  273. amd64obsd_trapframe_cache (struct frame_info *this_frame, void **this_cache)
  274. {
  275. struct gdbarch *gdbarch = get_frame_arch (this_frame);
  276. enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
  277. struct trad_frame_cache *cache;
  278. CORE_ADDR func, sp, addr;
  279. ULONGEST cs;
  280. const char *name;
  281. int i;
  282. if (*this_cache)
  283. return (struct trad_frame_cache *) *this_cache;
  284. cache = trad_frame_cache_zalloc (this_frame);
  285. *this_cache = cache;
  286. func = get_frame_func (this_frame);
  287. sp = get_frame_register_unsigned (this_frame, AMD64_RSP_REGNUM);
  288. find_pc_partial_function (func, &name, NULL, NULL);
  289. if (name && startswith (name, "Xintr"))
  290. addr = sp + 8; /* It's an interrupt frame. */
  291. else
  292. addr = sp;
  293. for (i = 0; i < ARRAY_SIZE (amd64obsd_tf_reg_offset); i++)
  294. if (amd64obsd_tf_reg_offset[i] != -1)
  295. trad_frame_set_reg_addr (cache, i, addr + amd64obsd_tf_reg_offset[i]);
  296. /* Read %cs from trap frame. */
  297. addr += amd64obsd_tf_reg_offset[AMD64_CS_REGNUM];
  298. cs = read_memory_unsigned_integer (addr, 8, byte_order);
  299. if ((cs & I386_SEL_RPL) == I386_SEL_UPL)
  300. {
  301. /* Trap from user space; terminate backtrace. */
  302. trad_frame_set_id (cache, outer_frame_id);
  303. }
  304. else
  305. {
  306. /* Construct the frame ID using the function start. */
  307. trad_frame_set_id (cache, frame_id_build (sp + 16, func));
  308. }
  309. return cache;
  310. }
  311. static void
  312. amd64obsd_trapframe_this_id (struct frame_info *this_frame,
  313. void **this_cache, struct frame_id *this_id)
  314. {
  315. struct trad_frame_cache *cache =
  316. amd64obsd_trapframe_cache (this_frame, this_cache);
  317. trad_frame_get_id (cache, this_id);
  318. }
  319. static struct value *
  320. amd64obsd_trapframe_prev_register (struct frame_info *this_frame,
  321. void **this_cache, int regnum)
  322. {
  323. struct trad_frame_cache *cache =
  324. amd64obsd_trapframe_cache (this_frame, this_cache);
  325. return trad_frame_get_register (cache, this_frame, regnum);
  326. }
  327. static int
  328. amd64obsd_trapframe_sniffer (const struct frame_unwind *self,
  329. struct frame_info *this_frame,
  330. void **this_prologue_cache)
  331. {
  332. ULONGEST cs;
  333. const char *name;
  334. /* Check Current Privilege Level and bail out if we're not executing
  335. in kernel space. */
  336. cs = get_frame_register_unsigned (this_frame, AMD64_CS_REGNUM);
  337. if ((cs & I386_SEL_RPL) == I386_SEL_UPL)
  338. return 0;
  339. find_pc_partial_function (get_frame_pc (this_frame), &name, NULL, NULL);
  340. return (name && ((strcmp (name, "calltrap") == 0)
  341. || (strcmp (name, "osyscall1") == 0)
  342. || (strcmp (name, "Xsyscall") == 0)
  343. || (startswith (name, "Xintr"))));
  344. }
  345. static const struct frame_unwind amd64obsd_trapframe_unwind =
  346. {
  347. /* FIXME: kettenis/20051219: This really is more like an interrupt
  348. frame, but SIGTRAMP_FRAME would print <signal handler called>,
  349. which really is not what we want here. */
  350. "amd64 openbsd trap",
  351. NORMAL_FRAME,
  352. default_frame_unwind_stop_reason,
  353. amd64obsd_trapframe_this_id,
  354. amd64obsd_trapframe_prev_register,
  355. NULL,
  356. amd64obsd_trapframe_sniffer
  357. };
  358. static void
  359. amd64obsd_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
  360. {
  361. i386_gdbarch_tdep *tdep = (i386_gdbarch_tdep *) gdbarch_tdep (gdbarch);
  362. amd64_init_abi (info, gdbarch,
  363. amd64_target_description (X86_XSTATE_SSE_MASK, true));
  364. obsd_init_abi (info, gdbarch);
  365. /* Initialize general-purpose register set details. */
  366. tdep->gregset_reg_offset = amd64obsd_r_reg_offset;
  367. tdep->gregset_num_regs = ARRAY_SIZE (amd64obsd_r_reg_offset);
  368. tdep->sizeof_gregset = 24 * 8;
  369. tdep->jb_pc_offset = 7 * 8;
  370. tdep->sigtramp_p = amd64obsd_sigtramp_p;
  371. tdep->sigcontext_addr = amd64obsd_sigcontext_addr;
  372. tdep->sc_reg_offset = amd64obsd_sc_reg_offset;
  373. tdep->sc_num_regs = ARRAY_SIZE (amd64obsd_sc_reg_offset);
  374. /* OpenBSD provides a user-level threads implementation. */
  375. bsd_uthread_set_supply_uthread (gdbarch, amd64obsd_supply_uthread);
  376. bsd_uthread_set_collect_uthread (gdbarch, amd64obsd_collect_uthread);
  377. /* OpenBSD uses SVR4-style shared libraries. */
  378. set_solib_svr4_fetch_link_map_offsets
  379. (gdbarch, svr4_lp64_fetch_link_map_offsets);
  380. /* Unwind kernel trap frames correctly. */
  381. frame_unwind_prepend_unwinder (gdbarch, &amd64obsd_trapframe_unwind);
  382. }
  383. void _initialize_amd64obsd_tdep ();
  384. void
  385. _initialize_amd64obsd_tdep ()
  386. {
  387. /* The OpenBSD/amd64 native dependent code makes this assumption. */
  388. gdb_assert (ARRAY_SIZE (amd64obsd_r_reg_offset) == AMD64_NUM_GREGS);
  389. gdbarch_register_osabi (bfd_arch_i386, bfd_mach_x86_64,
  390. GDB_OSABI_OPENBSD, amd64obsd_init_abi);
  391. }