1 /* Native-dependent code for modern i386 BSD's.
3 Copyright (C) 2000-2018 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
25 #include <sys/types.h>
26 #include <sys/ptrace.h>
27 #include <machine/reg.h>
28 #include <machine/frame.h>
30 #include "i386-tdep.h"
31 #include "i387-tdep.h"
32 #include "x86-bsd-nat.h"
33 #include "i386-bsd-nat.h"
34 #include "inf-ptrace.h"
37 /* In older BSD versions we cannot get at some of the segment
38 registers. FreeBSD for example didn't support the %fs and %gs
39 registers until the 3.0 release. We have autoconf checks for their
40 presence, and deal gracefully with their absence. */
42 /* Offset in `struct reg' where MEMBER is stored. */
43 #define REG_OFFSET(member) offsetof (struct reg, member)
45 /* At i386bsd_reg_offset[REGNUM] you'll find the offset in `struct
46 reg' where the GDB register REGNUM is stored. Unsupported
47 registers are marked with `-1'. */
48 static int i386bsd_r_reg_offset[] =
59 REG_OFFSET (r_eflags),
64 #ifdef HAVE_STRUCT_REG_R_FS
69 #ifdef HAVE_STRUCT_REG_R_GS
76 /* Macro to determine if a register is fetched with PT_GETREGS. */
77 #define GETREGS_SUPPLIES(regnum) \
78 ((0 <= (regnum) && (regnum) <= 15))
80 #ifdef HAVE_PT_GETXMMREGS
81 /* Set to 1 if the kernel supports PT_GETXMMREGS. Initialized to -1
82 so that we try PT_GETXMMREGS the first time around. */
83 static int have_ptrace_xmmregs = -1;
87 /* Supply the general-purpose registers in GREGS, to REGCACHE. */
90 i386bsd_supply_gregset (struct regcache *regcache, const void *gregs)
92 const char *regs = (const char *) gregs;
95 for (regnum = 0; regnum < ARRAY_SIZE (i386bsd_r_reg_offset); regnum++)
97 int offset = i386bsd_r_reg_offset[regnum];
100 regcache_raw_supply (regcache, regnum, regs + offset);
104 /* Collect register REGNUM from REGCACHE and store its contents in
105 GREGS. If REGNUM is -1, collect and store all appropriate
109 i386bsd_collect_gregset (const struct regcache *regcache,
110 void *gregs, int regnum)
112 char *regs = (char *) gregs;
115 for (i = 0; i < ARRAY_SIZE (i386bsd_r_reg_offset); i++)
117 if (regnum == -1 || regnum == i)
119 int offset = i386bsd_r_reg_offset[i];
122 regcache_raw_collect (regcache, i, regs + offset);
127 /* Fetch register REGNUM from the inferior. If REGNUM is -1, do this
128 for all registers (including the floating point registers). */
131 i386bsd_fetch_inferior_registers (struct target_ops *ops,
132 struct regcache *regcache, int regnum)
134 pid_t pid = get_ptrace_pid (regcache_get_ptid (regcache));
136 if (regnum == -1 || GETREGS_SUPPLIES (regnum))
140 if (ptrace (PT_GETREGS, pid, (PTRACE_TYPE_ARG3) ®s, 0) == -1)
141 perror_with_name (_("Couldn't get registers"));
143 i386bsd_supply_gregset (regcache, ®s);
148 if (regnum == -1 || regnum >= I386_ST0_REGNUM)
151 #ifdef HAVE_PT_GETXMMREGS
155 #ifdef PT_GETXSTATE_INFO
156 if (x86bsd_xsave_len != 0)
160 xstateregs = alloca (x86bsd_xsave_len);
161 if (ptrace (PT_GETXSTATE, pid,
162 (PTRACE_TYPE_ARG3) xstateregs, 0) == -1)
163 perror_with_name (_("Couldn't get extended state status"));
165 i387_supply_xsave (regcache, -1, xstateregs);
170 #ifdef HAVE_PT_GETXMMREGS
171 if (have_ptrace_xmmregs != 0
172 && ptrace(PT_GETXMMREGS, pid, (PTRACE_TYPE_ARG3) xmmregs, 0) == 0)
174 have_ptrace_xmmregs = 1;
175 i387_supply_fxsave (regcache, -1, xmmregs);
179 have_ptrace_xmmregs = 0;
181 if (ptrace (PT_GETFPREGS, pid, (PTRACE_TYPE_ARG3) &fpregs, 0) == -1)
182 perror_with_name (_("Couldn't get floating point status"));
184 i387_supply_fsave (regcache, -1, &fpregs);
185 #ifdef HAVE_PT_GETXMMREGS
191 /* Store register REGNUM back into the inferior. If REGNUM is -1, do
192 this for all registers (including the floating point registers). */
195 i386bsd_store_inferior_registers (struct target_ops *ops,
196 struct regcache *regcache, int regnum)
198 pid_t pid = get_ptrace_pid (regcache_get_ptid (regcache));
200 if (regnum == -1 || GETREGS_SUPPLIES (regnum))
204 if (ptrace (PT_GETREGS, pid, (PTRACE_TYPE_ARG3) ®s, 0) == -1)
205 perror_with_name (_("Couldn't get registers"));
207 i386bsd_collect_gregset (regcache, ®s, regnum);
209 if (ptrace (PT_SETREGS, pid, (PTRACE_TYPE_ARG3) ®s, 0) == -1)
210 perror_with_name (_("Couldn't write registers"));
216 if (regnum == -1 || regnum >= I386_ST0_REGNUM)
219 #ifdef HAVE_PT_GETXMMREGS
223 #ifdef PT_GETXSTATE_INFO
224 if (x86bsd_xsave_len != 0)
228 xstateregs = alloca (x86bsd_xsave_len);
229 if (ptrace (PT_GETXSTATE, pid,
230 (PTRACE_TYPE_ARG3) xstateregs, 0) == -1)
231 perror_with_name (_("Couldn't get extended state status"));
233 i387_collect_xsave (regcache, -1, xstateregs, 0);
235 if (ptrace (PT_SETXSTATE, pid,
236 (PTRACE_TYPE_ARG3) xstateregs, x86bsd_xsave_len) == -1)
237 perror_with_name (_("Couldn't write extended state status"));
242 #ifdef HAVE_PT_GETXMMREGS
243 if (have_ptrace_xmmregs != 0
244 && ptrace(PT_GETXMMREGS, pid, (PTRACE_TYPE_ARG3) xmmregs, 0) == 0)
246 have_ptrace_xmmregs = 1;
248 i387_collect_fxsave (regcache, regnum, xmmregs);
250 if (ptrace (PT_SETXMMREGS, pid, (PTRACE_TYPE_ARG3) xmmregs, 0) == -1)
251 perror_with_name (_("Couldn't write XMM registers"));
255 have_ptrace_xmmregs = 0;
257 if (ptrace (PT_GETFPREGS, pid, (PTRACE_TYPE_ARG3) &fpregs, 0) == -1)
258 perror_with_name (_("Couldn't get floating point status"));
260 i387_collect_fsave (regcache, regnum, &fpregs);
262 if (ptrace (PT_SETFPREGS, pid, (PTRACE_TYPE_ARG3) &fpregs, 0) == -1)
263 perror_with_name (_("Couldn't write floating point status"));
264 #ifdef HAVE_PT_GETXMMREGS
270 /* Create a prototype *BSD/i386 target. The client can override it
271 with local methods. */
274 i386bsd_target (void)
276 struct target_ops *t;
278 t = x86bsd_target ();
279 t->to_fetch_registers = i386bsd_fetch_inferior_registers;
280 t->to_store_registers = i386bsd_store_inferior_registers;
285 _initialize_i386bsd_nat (void)
289 /* To support the recognition of signal handlers, i386-bsd-tdep.c
290 hardcodes some constants. Inclusion of this file means that we
291 are compiling a native debugger, which means that we can use the
292 system header files and sysctl(3) to get at the relevant
295 #if defined (__FreeBSD_version) && __FreeBSD_version >= 400011
296 #define SC_REG_OFFSET i386fbsd4_sc_reg_offset
297 #elif defined (__FreeBSD_version) && __FreeBSD_version >= 300005
298 #define SC_REG_OFFSET i386fbsd_sc_reg_offset
299 #elif defined (NetBSD) || defined (__NetBSD_Version__)
300 #define SC_REG_OFFSET i386nbsd_sc_reg_offset
301 #elif defined (OpenBSD)
302 #define SC_REG_OFFSET i386obsd_sc_reg_offset
307 /* We only check the program counter, stack pointer and frame
308 pointer since these members of `struct sigcontext' are essential
309 for providing backtraces. More checks could be added, but would
310 involve adding configure checks for the appropriate structure
311 members, since older BSD's don't provide all of them. */
313 #define SC_PC_OFFSET SC_REG_OFFSET[I386_EIP_REGNUM]
314 #define SC_SP_OFFSET SC_REG_OFFSET[I386_ESP_REGNUM]
315 #define SC_FP_OFFSET SC_REG_OFFSET[I386_EBP_REGNUM]
317 /* Override the default value for the offset of the program counter
318 in the sigcontext structure. */
319 offset = offsetof (struct sigcontext, sc_pc);
321 if (SC_PC_OFFSET != offset)
324 offsetof (struct sigcontext, sc_pc) yields %d instead of %d.\n\
325 Please report this to <bug-gdb@gnu.org>."),
326 offset, SC_PC_OFFSET);
329 SC_PC_OFFSET = offset;
331 /* Likewise for the stack pointer. */
332 offset = offsetof (struct sigcontext, sc_sp);
334 if (SC_SP_OFFSET != offset)
337 offsetof (struct sigcontext, sc_sp) yields %d instead of %d.\n\
338 Please report this to <bug-gdb@gnu.org>."),
339 offset, SC_SP_OFFSET);
342 SC_SP_OFFSET = offset;
344 /* And the frame pointer. */
345 offset = offsetof (struct sigcontext, sc_fp);
347 if (SC_FP_OFFSET != offset)
350 offsetof (struct sigcontext, sc_fp) yields %d instead of %d.\n\
351 Please report this to <bug-gdb@gnu.org>."),
352 offset, SC_FP_OFFSET);
355 SC_FP_OFFSET = offset;
357 #endif /* SC_REG_OFFSET */