1 /* Darwin support for GDB, the GNU debugger.
2 Copyright (C) 1997-2019 Free Software Foundation, Inc.
4 Contributed by Apple Computer, Inc.
6 This file is part of GDB.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
30 #include "i386-tdep.h"
31 #include "i387-tdep.h"
33 #include "arch-utils.h"
37 #include "darwin-nat.h"
38 #include "i386-darwin-tdep.h"
41 #include "amd64-nat.h"
42 #include "amd64-tdep.h"
43 #include "amd64-darwin-tdep.h"
46 struct i386_darwin_nat_target final : public x86_nat_target<darwin_nat_target>
48 /* Add our register access methods. */
49 void fetch_registers (struct regcache *, int) override;
50 void store_registers (struct regcache *, int) override;
53 static struct i386_darwin_nat_target darwin_target;
55 /* Read register values from the inferior process.
56 If REGNO is -1, do this for all registers.
57 Otherwise, REGNO specifies which register (so we can save time). */
60 i386_darwin_nat_target::fetch_registers (struct regcache *regcache, int regno)
62 thread_t current_thread = regcache->ptid ().tid ();
64 struct gdbarch *gdbarch = regcache->arch ();
67 if (gdbarch_ptr_bit (gdbarch) == 64)
69 if (regno == -1 || amd64_native_gregset_supplies_p (gdbarch, regno))
71 x86_thread_state_t gp_regs;
72 unsigned int gp_count = x86_THREAD_STATE_COUNT;
75 ret = thread_get_state
76 (current_thread, x86_THREAD_STATE, (thread_state_t) & gp_regs,
78 if (ret != KERN_SUCCESS)
80 printf_unfiltered (_("Error calling thread_get_state for "
81 "GP registers for thread 0x%lx\n"),
82 (unsigned long) current_thread);
83 MACH_CHECK_ERROR (ret);
86 /* Some kernels don't sanitize the values. */
87 gp_regs.uts.ts64.__fs &= 0xffff;
88 gp_regs.uts.ts64.__gs &= 0xffff;
90 amd64_supply_native_gregset (regcache, &gp_regs.uts, -1);
94 if (regno == -1 || !amd64_native_gregset_supplies_p (gdbarch, regno))
96 x86_float_state_t fp_regs;
97 unsigned int fp_count = x86_FLOAT_STATE_COUNT;
100 ret = thread_get_state
101 (current_thread, x86_FLOAT_STATE, (thread_state_t) & fp_regs,
103 if (ret != KERN_SUCCESS)
105 printf_unfiltered (_("Error calling thread_get_state for "
106 "float registers for thread 0x%lx\n"),
107 (unsigned long) current_thread);
108 MACH_CHECK_ERROR (ret);
110 amd64_supply_fxsave (regcache, -1, &fp_regs.ufs.fs64.__fpu_fcw);
117 if (regno == -1 || regno < I386_NUM_GREGS)
119 x86_thread_state32_t gp_regs;
120 unsigned int gp_count = x86_THREAD_STATE32_COUNT;
124 ret = thread_get_state
125 (current_thread, x86_THREAD_STATE32, (thread_state_t) &gp_regs,
127 if (ret != KERN_SUCCESS)
129 printf_unfiltered (_("Error calling thread_get_state for "
130 "GP registers for thread 0x%lx\n"),
131 (unsigned long) current_thread);
132 MACH_CHECK_ERROR (ret);
134 for (i = 0; i < I386_NUM_GREGS; i++)
136 (i, (char *) &gp_regs + i386_darwin_thread_state_reg_offset[i]);
142 || (regno >= I386_ST0_REGNUM && regno < I386_SSE_NUM_REGS))
144 x86_float_state32_t fp_regs;
145 unsigned int fp_count = x86_FLOAT_STATE32_COUNT;
148 ret = thread_get_state
149 (current_thread, x86_FLOAT_STATE32, (thread_state_t) &fp_regs,
151 if (ret != KERN_SUCCESS)
153 printf_unfiltered (_("Error calling thread_get_state for "
154 "float registers for thread 0x%lx\n"),
155 (unsigned long) current_thread);
156 MACH_CHECK_ERROR (ret);
158 i387_supply_fxsave (regcache, -1, &fp_regs.__fpu_fcw);
165 warning (_("unknown register %d"), regno);
166 regcache->raw_supply (regno, NULL);
170 /* Store our register values back into the inferior.
171 If REGNO is -1, do this for all registers.
172 Otherwise, REGNO specifies which register (so we can save time). */
175 i386_darwin_nat_target::store_registers (struct regcache *regcache,
178 thread_t current_thread = regcache->ptid ().tid ();
179 struct gdbarch *gdbarch = regcache->arch ();
182 if (gdbarch_ptr_bit (gdbarch) == 64)
184 if (regno == -1 || amd64_native_gregset_supplies_p (gdbarch, regno))
186 x86_thread_state_t gp_regs;
188 unsigned int gp_count = x86_THREAD_STATE_COUNT;
190 ret = thread_get_state
191 (current_thread, x86_THREAD_STATE, (thread_state_t) &gp_regs,
193 MACH_CHECK_ERROR (ret);
194 gdb_assert (gp_regs.tsh.flavor == x86_THREAD_STATE64);
195 gdb_assert (gp_regs.tsh.count == x86_THREAD_STATE64_COUNT);
197 amd64_collect_native_gregset (regcache, &gp_regs.uts, regno);
199 /* Some kernels don't sanitize the values. */
200 gp_regs.uts.ts64.__fs &= 0xffff;
201 gp_regs.uts.ts64.__gs &= 0xffff;
203 ret = thread_set_state (current_thread, x86_THREAD_STATE,
204 (thread_state_t) &gp_regs,
205 x86_THREAD_STATE_COUNT);
206 MACH_CHECK_ERROR (ret);
209 if (regno == -1 || !amd64_native_gregset_supplies_p (gdbarch, regno))
211 x86_float_state_t fp_regs;
213 unsigned int fp_count = x86_FLOAT_STATE_COUNT;
215 ret = thread_get_state
216 (current_thread, x86_FLOAT_STATE, (thread_state_t) & fp_regs,
218 MACH_CHECK_ERROR (ret);
219 gdb_assert (fp_regs.fsh.flavor == x86_FLOAT_STATE64);
220 gdb_assert (fp_regs.fsh.count == x86_FLOAT_STATE64_COUNT);
222 amd64_collect_fxsave (regcache, regno, &fp_regs.ufs.fs64.__fpu_fcw);
224 ret = thread_set_state (current_thread, x86_FLOAT_STATE,
225 (thread_state_t) & fp_regs,
226 x86_FLOAT_STATE_COUNT);
227 MACH_CHECK_ERROR (ret);
233 if (regno == -1 || regno < I386_NUM_GREGS)
235 x86_thread_state32_t gp_regs;
237 unsigned int gp_count = x86_THREAD_STATE32_COUNT;
240 ret = thread_get_state
241 (current_thread, x86_THREAD_STATE32, (thread_state_t) &gp_regs,
243 MACH_CHECK_ERROR (ret);
245 for (i = 0; i < I386_NUM_GREGS; i++)
246 if (regno == -1 || regno == i)
247 regcache->raw_collect
248 (i, (char *) &gp_regs + i386_darwin_thread_state_reg_offset[i]);
250 ret = thread_set_state (current_thread, x86_THREAD_STATE32,
251 (thread_state_t) &gp_regs,
252 x86_THREAD_STATE32_COUNT);
253 MACH_CHECK_ERROR (ret);
257 || (regno >= I386_ST0_REGNUM && regno < I386_SSE_NUM_REGS))
259 x86_float_state32_t fp_regs;
260 unsigned int fp_count = x86_FLOAT_STATE32_COUNT;
263 ret = thread_get_state
264 (current_thread, x86_FLOAT_STATE32, (thread_state_t) & fp_regs,
266 MACH_CHECK_ERROR (ret);
268 i387_collect_fxsave (regcache, regno, &fp_regs.__fpu_fcw);
270 ret = thread_set_state (current_thread, x86_FLOAT_STATE32,
271 (thread_state_t) &fp_regs,
272 x86_FLOAT_STATE32_COUNT);
273 MACH_CHECK_ERROR (ret);
278 /* Support for debug registers, boosted mostly from i386-linux-nat.c. */
281 i386_darwin_dr_set (int regnum, CORE_ADDR value)
283 thread_t current_thread;
284 x86_debug_state_t dr_regs;
286 unsigned int dr_count;
288 gdb_assert (regnum >= 0 && regnum <= DR_CONTROL);
290 current_thread = inferior_ptid.tid ();
292 dr_regs.dsh.flavor = x86_DEBUG_STATE;
293 dr_regs.dsh.count = x86_DEBUG_STATE_COUNT;
294 dr_count = x86_DEBUG_STATE_COUNT;
295 ret = thread_get_state (current_thread, x86_DEBUG_STATE,
296 (thread_state_t) &dr_regs, &dr_count);
297 MACH_CHECK_ERROR (ret);
299 switch (dr_regs.dsh.flavor)
301 case x86_DEBUG_STATE32:
305 dr_regs.uds.ds32.__dr0 = value;
308 dr_regs.uds.ds32.__dr1 = value;
311 dr_regs.uds.ds32.__dr2 = value;
314 dr_regs.uds.ds32.__dr3 = value;
317 dr_regs.uds.ds32.__dr4 = value;
320 dr_regs.uds.ds32.__dr5 = value;
323 dr_regs.uds.ds32.__dr6 = value;
326 dr_regs.uds.ds32.__dr7 = value;
331 case x86_DEBUG_STATE64:
335 dr_regs.uds.ds64.__dr0 = value;
338 dr_regs.uds.ds64.__dr1 = value;
341 dr_regs.uds.ds64.__dr2 = value;
344 dr_regs.uds.ds64.__dr3 = value;
347 dr_regs.uds.ds64.__dr4 = value;
350 dr_regs.uds.ds64.__dr5 = value;
353 dr_regs.uds.ds64.__dr6 = value;
356 dr_regs.uds.ds64.__dr7 = value;
363 ret = thread_set_state (current_thread, dr_regs.dsh.flavor,
364 (thread_state_t) &dr_regs.uds, dr_count);
366 MACH_CHECK_ERROR (ret);
370 i386_darwin_dr_get (int regnum)
372 thread_t current_thread;
373 x86_debug_state_t dr_regs;
375 unsigned int dr_count;
377 gdb_assert (regnum >= 0 && regnum <= DR_CONTROL);
379 current_thread = inferior_ptid.tid ();
381 dr_regs.dsh.flavor = x86_DEBUG_STATE;
382 dr_regs.dsh.count = x86_DEBUG_STATE_COUNT;
383 dr_count = x86_DEBUG_STATE_COUNT;
384 ret = thread_get_state (current_thread, x86_DEBUG_STATE,
385 (thread_state_t) &dr_regs, &dr_count);
386 MACH_CHECK_ERROR (ret);
388 switch (dr_regs.dsh.flavor)
390 case x86_DEBUG_STATE32:
394 return dr_regs.uds.ds32.__dr0;
396 return dr_regs.uds.ds32.__dr1;
398 return dr_regs.uds.ds32.__dr2;
400 return dr_regs.uds.ds32.__dr3;
402 return dr_regs.uds.ds32.__dr4;
404 return dr_regs.uds.ds32.__dr5;
406 return dr_regs.uds.ds32.__dr6;
408 return dr_regs.uds.ds32.__dr7;
414 case x86_DEBUG_STATE64:
418 return dr_regs.uds.ds64.__dr0;
420 return dr_regs.uds.ds64.__dr1;
422 return dr_regs.uds.ds64.__dr2;
424 return dr_regs.uds.ds64.__dr3;
426 return dr_regs.uds.ds64.__dr4;
428 return dr_regs.uds.ds64.__dr5;
430 return dr_regs.uds.ds64.__dr6;
432 return dr_regs.uds.ds64.__dr7;
444 i386_darwin_dr_set_control (unsigned long control)
446 i386_darwin_dr_set (DR_CONTROL, control);
450 i386_darwin_dr_set_addr (int regnum, CORE_ADDR addr)
452 gdb_assert (regnum >= 0 && regnum <= DR_LASTADDR - DR_FIRSTADDR);
454 i386_darwin_dr_set (DR_FIRSTADDR + regnum, addr);
458 i386_darwin_dr_get_addr (int regnum)
460 return i386_darwin_dr_get (regnum);
464 i386_darwin_dr_get_status (void)
466 return i386_darwin_dr_get (DR_STATUS);
470 i386_darwin_dr_get_control (void)
472 return i386_darwin_dr_get (DR_CONTROL);
476 darwin_check_osabi (darwin_inferior *inf, thread_t thread)
478 if (gdbarch_osabi (target_gdbarch ()) == GDB_OSABI_UNKNOWN)
480 /* Attaching to a process. Let's figure out what kind it is. */
481 x86_thread_state_t gp_regs;
482 struct gdbarch_info info;
483 unsigned int gp_count = x86_THREAD_STATE_COUNT;
486 ret = thread_get_state (thread, x86_THREAD_STATE,
487 (thread_state_t) &gp_regs, &gp_count);
488 if (ret != KERN_SUCCESS)
490 MACH_CHECK_ERROR (ret);
494 gdbarch_info_init (&info);
495 gdbarch_info_fill (&info);
496 info.byte_order = gdbarch_byte_order (target_gdbarch ());
497 info.osabi = GDB_OSABI_DARWIN;
498 if (gp_regs.tsh.flavor == x86_THREAD_STATE64)
499 info.bfd_arch_info = bfd_lookup_arch (bfd_arch_i386,
502 info.bfd_arch_info = bfd_lookup_arch (bfd_arch_i386,
504 gdbarch_update_p (info);
508 #define X86_EFLAGS_T 0x100UL
510 /* Returning from a signal trampoline is done by calling a
511 special system call (sigreturn). This system call
512 restores the registers that were saved when the signal was
513 raised, including %eflags/%rflags. That means that single-stepping
514 won't work. Instead, we'll have to modify the signal context
515 that's about to be restored, and set the trace flag there. */
518 i386_darwin_sstep_at_sigreturn (x86_thread_state_t *regs)
520 enum bfd_endian byte_order = gdbarch_byte_order (target_gdbarch ());
521 static const gdb_byte darwin_syscall[] = { 0xcd, 0x80 }; /* int 0x80 */
522 gdb_byte buf[sizeof (darwin_syscall)];
524 /* Check if PC is at a sigreturn system call. */
525 if (target_read_memory (regs->uts.ts32.__eip, buf, sizeof (buf)) == 0
526 && memcmp (buf, darwin_syscall, sizeof (darwin_syscall)) == 0
527 && regs->uts.ts32.__eax == 0xb8 /* SYS_sigreturn */)
534 uctx_addr = read_memory_unsigned_integer
535 (regs->uts.ts32.__esp + 4, 4, byte_order);
536 mctx_addr = read_memory_unsigned_integer
537 (uctx_addr + 28, 4, byte_order);
539 flags_addr = mctx_addr + 12 + 9 * 4;
540 read_memory (flags_addr, (gdb_byte *) &eflags, 4);
541 eflags |= X86_EFLAGS_T;
542 write_memory (flags_addr, (gdb_byte *) &eflags, 4);
551 amd64_darwin_sstep_at_sigreturn (x86_thread_state_t *regs)
553 enum bfd_endian byte_order = gdbarch_byte_order (target_gdbarch ());
554 static const gdb_byte darwin_syscall[] = { 0x0f, 0x05 }; /* syscall */
555 gdb_byte buf[sizeof (darwin_syscall)];
557 /* Check if PC is at a sigreturn system call. */
558 if (target_read_memory (regs->uts.ts64.__rip, buf, sizeof (buf)) == 0
559 && memcmp (buf, darwin_syscall, sizeof (darwin_syscall)) == 0
560 && (regs->uts.ts64.__rax & 0xffffffff) == 0x20000b8 /* SYS_sigreturn */)
566 mctx_addr = read_memory_unsigned_integer
567 (regs->uts.ts64.__rdi + 48, 8, byte_order);
568 flags_addr = mctx_addr + 16 + 17 * 8;
570 /* AMD64 is little endian. */
571 read_memory (flags_addr, (gdb_byte *) &rflags, 4);
572 rflags |= X86_EFLAGS_T;
573 write_memory (flags_addr, (gdb_byte *) &rflags, 4);
582 darwin_set_sstep (thread_t thread, int enable)
584 x86_thread_state_t regs;
585 unsigned int count = x86_THREAD_STATE_COUNT;
588 kret = thread_get_state (thread, x86_THREAD_STATE,
589 (thread_state_t) ®s, &count);
590 if (kret != KERN_SUCCESS)
592 printf_unfiltered (_("darwin_set_sstep: error %x, thread=%x\n"),
597 switch (regs.tsh.flavor)
599 case x86_THREAD_STATE32:
601 __uint32_t bit = enable ? X86_EFLAGS_T : 0;
603 if (enable && i386_darwin_sstep_at_sigreturn (®s))
605 if ((regs.uts.ts32.__eflags & X86_EFLAGS_T) == bit)
607 regs.uts.ts32.__eflags
608 = (regs.uts.ts32.__eflags & ~X86_EFLAGS_T) | bit;
609 kret = thread_set_state (thread, x86_THREAD_STATE,
610 (thread_state_t) ®s, count);
611 MACH_CHECK_ERROR (kret);
615 case x86_THREAD_STATE64:
617 __uint64_t bit = enable ? X86_EFLAGS_T : 0;
619 if (enable && amd64_darwin_sstep_at_sigreturn (®s))
621 if ((regs.uts.ts64.__rflags & X86_EFLAGS_T) == bit)
623 regs.uts.ts64.__rflags
624 = (regs.uts.ts64.__rflags & ~X86_EFLAGS_T) | bit;
625 kret = thread_set_state (thread, x86_THREAD_STATE,
626 (thread_state_t) ®s, count);
627 MACH_CHECK_ERROR (kret);
632 error (_("darwin_set_sstep: unknown flavour: %d"), regs.tsh.flavor);
637 _initialize_i386_darwin_nat (void)
640 amd64_native_gregset64_reg_offset = amd64_darwin_thread_state_reg_offset;
641 amd64_native_gregset64_num_regs = amd64_darwin_thread_state_num_regs;
642 amd64_native_gregset32_reg_offset = i386_darwin_thread_state_reg_offset;
643 amd64_native_gregset32_num_regs = i386_darwin_thread_state_num_regs;
646 x86_dr_low.set_control = i386_darwin_dr_set_control;
647 x86_dr_low.set_addr = i386_darwin_dr_set_addr;
648 x86_dr_low.get_addr = i386_darwin_dr_get_addr;
649 x86_dr_low.get_status = i386_darwin_dr_get_status;
650 x86_dr_low.get_control = i386_darwin_dr_get_control;
652 /* Let's assume that the kernel is 64 bits iff the executable is. */
654 x86_set_debug_register_length (8);
656 x86_set_debug_register_length (4);
659 add_inf_child_target (&darwin_target);