GDB (xrefs)
/tmp/gdb-8.1/gdb/i386-fbsd-tdep.c
Go to the documentation of this file.
1 /* Target-dependent code for FreeBSD/i386.
2 
3  Copyright (C) 2003-2018 Free Software Foundation, Inc.
4 
5  This file is part of GDB.
6 
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.
11 
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.
16 
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/>. */
19 
20 #include "defs.h"
21 #include "arch-utils.h"
22 #include "gdbcore.h"
23 #include "osabi.h"
24 #include "regcache.h"
25 #include "regset.h"
26 #include "i386-fbsd-tdep.h"
27 #include "x86-xstate.h"
28 
29 #include "i386-tdep.h"
30 #include "i387-tdep.h"
31 #include "fbsd-tdep.h"
32 #include "solib-svr4.h"
33 
34 /* Support for signal handlers. */
35 
36 /* Return whether THIS_FRAME corresponds to a FreeBSD sigtramp
37  routine. */
38 
39 /* FreeBSD/i386 supports three different signal trampolines, one for
40  versions before 4.0, a second for 4.x, and a third for 5.0 and
41  later. To complicate matters, FreeBSD/i386 binaries running under
42  an amd64 kernel use a different set of trampolines. These
43  trampolines differ from the i386 kernel trampolines in that they
44  omit a middle section that conditionally restores %gs. */
45 
47 {
48  0x8d, 0x44, 0x24, 0x20, /* lea SIGF_UC(%esp),%eax */
49  0x50 /* pushl %eax */
50 };
51 
53 {
54  0xf7, 0x40, 0x54, 0x00, 0x00, 0x02, 0x00,
55  /* testl $PSL_VM,UC_EFLAGS(%eax) */
56  0x75, 0x03, /* jne +3 */
57  0x8e, 0x68, 0x14 /* mov UC_GS(%eax),%gs */
58 };
59 
61 {
62  0xb8, 0xa1, 0x01, 0x00, 0x00, /* movl $SYS_sigreturn,%eax */
63  0x50, /* pushl %eax */
64  0xcd, 0x80 /* int $0x80 */
65 };
66 
68 {
69  0x8d, 0x44, 0x24, 0x14, /* lea SIGF_UC4(%esp),%eax */
70  0x50 /* pushl %eax */
71 };
72 
74 {
75  0xf7, 0x40, 0x54, 0x00, 0x00, 0x02, 0x00,
76  /* testl $PSL_VM,UC4_EFLAGS(%eax) */
77  0x75, 0x03, /* jne +3 */
78  0x8e, 0x68, 0x14 /* mov UC4_GS(%eax),%gs */
79 };
80 
82 {
83  0xb8, 0x58, 0x01, 0x00, 0x00, /* movl $344,%eax */
84  0x50, /* pushl %eax */
85  0xcd, 0x80 /* int $0x80 */
86 };
87 
89 {
90  0x8d, 0x44, 0x24, 0x14, /* lea SIGF_SC(%esp),%eax */
91  0x50 /* pushl %eax */
92 };
93 
95 {
96  0xf7, 0x40, 0x18, 0x00, 0x00, 0x02, 0x00,
97  /* testl $PSL_VM,SC_PS(%eax) */
98  0x75, 0x03, /* jne +3 */
99  0x8e, 0x68, 0x44 /* mov SC_GS(%eax),%gs */
100 };
101 
103 {
104  0xb8, 0x67, 0x00, 0x00, 0x00, /* movl $103,%eax */
105  0x50, /* pushl %eax */
106  0xcd, 0x80 /* int $0x80 */
107 };
108 
109 /* The three different trampolines are all the same size. */
113  == sizeof i386fbsd_osigtramp_start);
117  == sizeof i386fbsd_osigtramp_middle);
121  == sizeof i386fbsd_osigtramp_end);
122 
123 /* We assume that the middle is the largest chunk below. */
125  > sizeof i386fbsd_sigtramp_start);
127  > sizeof i386fbsd_sigtramp_end);
128 
129 static int
130 i386fbsd_sigtramp_p (struct frame_info *this_frame)
131 {
132  CORE_ADDR pc = get_frame_pc (this_frame);
134  const gdb_byte *middle, *end;
135 
136  /* Look for a matching start. */
137  if (!safe_frame_unwind_memory (this_frame, pc, buf,
138  sizeof i386fbsd_sigtramp_start))
139  return 0;
140  if (memcmp (buf, i386fbsd_sigtramp_start, sizeof i386fbsd_sigtramp_start)
141  == 0)
142  {
143  middle = i386fbsd_sigtramp_middle;
144  end = i386fbsd_sigtramp_end;
145  }
146  else if (memcmp (buf, i386fbsd_freebsd4_sigtramp_start,
148  {
151  }
152  else if (memcmp (buf, i386fbsd_osigtramp_start,
153  sizeof i386fbsd_osigtramp_start) == 0)
154  {
155  middle = i386fbsd_osigtramp_middle;
157  }
158  else
159  return 0;
160 
161  /* Since the end is shorter than the middle, check for a matching end
162  next. */
163  pc += sizeof i386fbsd_sigtramp_start;
164  if (!safe_frame_unwind_memory (this_frame, pc, buf,
165  sizeof i386fbsd_sigtramp_end))
166  return 0;
167  if (memcmp (buf, end, sizeof i386fbsd_sigtramp_end) == 0)
168  return 1;
169 
170  /* If the end didn't match, check for a matching middle. */
171  if (!safe_frame_unwind_memory (this_frame, pc, buf,
172  sizeof i386fbsd_sigtramp_middle))
173  return 0;
174  if (memcmp (buf, middle, sizeof i386fbsd_sigtramp_middle) != 0)
175  return 0;
176 
177  /* The middle matched, check for a matching end. */
178  pc += sizeof i386fbsd_sigtramp_middle;
179  if (!safe_frame_unwind_memory (this_frame, pc, buf,
180  sizeof i386fbsd_sigtramp_end))
181  return 0;
182  if (memcmp (buf, end, sizeof i386fbsd_sigtramp_end) != 0)
183  return 0;
184 
185  return 1;
186 }
187 
188 /* FreeBSD 3.0-RELEASE or later. */
189 
190 /* From <machine/reg.h>. */
191 static int i386fbsd_r_reg_offset[] =
192 {
193  9 * 4, 8 * 4, 7 * 4, 6 * 4, /* %eax, %ecx, %edx, %ebx */
194  15 * 4, 4 * 4, /* %esp, %ebp */
195  3 * 4, 2 * 4, /* %esi, %edi */
196  12 * 4, 14 * 4, /* %eip, %eflags */
197  13 * 4, 16 * 4, /* %cs, %ss */
198  1 * 4, 0 * 4, -1, -1 /* %ds, %es, %fs, %gs */
199 };
200 
201 /* Sigtramp routine location. */
204 
205 /* From <machine/signal.h>. */
207 {
208  8 + 14 * 4, /* %eax */
209  8 + 13 * 4, /* %ecx */
210  8 + 12 * 4, /* %edx */
211  8 + 11 * 4, /* %ebx */
212  8 + 0 * 4, /* %esp */
213  8 + 1 * 4, /* %ebp */
214  8 + 10 * 4, /* %esi */
215  8 + 9 * 4, /* %edi */
216  8 + 3 * 4, /* %eip */
217  8 + 4 * 4, /* %eflags */
218  8 + 7 * 4, /* %cs */
219  8 + 8 * 4, /* %ss */
220  8 + 6 * 4, /* %ds */
221  8 + 5 * 4, /* %es */
222  8 + 15 * 4, /* %fs */
223  8 + 16 * 4 /* %gs */
224 };
225 
226 /* Get XSAVE extended state xcr0 from core dump. */
227 
228 uint64_t
230 {
231  asection *xstate = bfd_get_section_by_name (abfd, ".reg-xstate");
232  uint64_t xcr0;
233 
234  if (xstate)
235  {
236  size_t size = bfd_section_size (abfd, xstate);
237 
238  /* Check extended state size. */
241  else
242  {
243  char contents[8];
244 
245  if (! bfd_get_section_contents (abfd, xstate, contents,
247  8))
248  {
249  warning (_("Couldn't read `xcr0' bytes from "
250  "`.reg-xstate' section in core file."));
251  return X86_XSTATE_SSE_MASK;
252  }
253 
254  xcr0 = bfd_get_64 (abfd, contents);
255  }
256  }
257  else
259 
260  return xcr0;
261 }
262 
263 /* Implement the core_read_description gdbarch method. */
264 
265 static const struct target_desc *
267  struct target_ops *target,
268  bfd *abfd)
269 {
271 }
272 
273 /* Similar to i386_supply_fpregset, but use XSAVE extended state. */
274 
275 static void
277  struct regcache *regcache, int regnum,
278  const void *xstateregs, size_t len)
279 {
280  i387_supply_xsave (regcache, regnum, xstateregs);
281 }
282 
283 /* Similar to i386_collect_fpregset, but use XSAVE extended state. */
284 
285 static void
287  const struct regcache *regcache,
288  int regnum, void *xstateregs, size_t len)
289 {
290  i387_collect_xsave (regcache, regnum, xstateregs, 1);
291 }
292 
293 /* Register set definitions. */
294 
295 static const struct regset i386fbsd_xstateregset =
296  {
297  NULL,
300  };
301 
302 /* Iterate over core file register note sections. */
303 
304 static void
307  void *cb_data,
308  const struct regcache *regcache)
309 {
310  struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
311 
312  cb (".reg", tdep->sizeof_gregset, &i386_gregset, NULL, cb_data);
313  cb (".reg2", tdep->sizeof_fpregset, &i386_fpregset, NULL, cb_data);
314 
315  if (tdep->xcr0 & X86_XSTATE_AVX)
316  cb (".reg-xstate", X86_XSTATE_SIZE(tdep->xcr0),
317  &i386fbsd_xstateregset, "XSAVE extended state", cb_data);
318 }
319 
320 static void
322 {
323  struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
324 
325  /* Obviously FreeBSD is BSD-based. */
326  i386bsd_init_abi (info, gdbarch);
327 
328  /* FreeBSD has a different `struct reg', and reserves some space for
329  its FPU emulator in `struct fpreg'. */
331  tdep->gregset_num_regs = ARRAY_SIZE (i386fbsd_r_reg_offset);
332  tdep->sizeof_gregset = 18 * 4;
333  tdep->sizeof_fpregset = 176;
334 
335  /* FreeBSD uses -freg-struct-return by default. */
337 
339 
340  /* FreeBSD uses a different memory layout. */
343 
344  /* FreeBSD has a more complete `struct sigcontext'. */
346  tdep->sc_num_regs = ARRAY_SIZE (i386fbsd_sc_reg_offset);
347 
348  i386_elf_init_abi (info, gdbarch);
349 
350  /* FreeBSD uses SVR4-style shared libraries. */
353 }
354 
355 /* FreeBSD 4.0-RELEASE or later. */
356 
357 /* From <machine/reg.h>. */
359 {
360  10 * 4, 9 * 4, 8 * 4, 7 * 4, /* %eax, %ecx, %edx, %ebx */
361  16 * 4, 5 * 4, /* %esp, %ebp */
362  4 * 4, 3 * 4, /* %esi, %edi */
363  13 * 4, 15 * 4, /* %eip, %eflags */
364  14 * 4, 17 * 4, /* %cs, %ss */
365  2 * 4, 1 * 4, 0 * 4, 18 * 4 /* %ds, %es, %fs, %gs */
366 };
367 
368 /* From <machine/signal.h>. */
370 {
371  20 + 11 * 4, /* %eax */
372  20 + 10 * 4, /* %ecx */
373  20 + 9 * 4, /* %edx */
374  20 + 8 * 4, /* %ebx */
375  20 + 17 * 4, /* %esp */
376  20 + 6 * 4, /* %ebp */
377  20 + 5 * 4, /* %esi */
378  20 + 4 * 4, /* %edi */
379  20 + 14 * 4, /* %eip */
380  20 + 16 * 4, /* %eflags */
381  20 + 15 * 4, /* %cs */
382  20 + 18 * 4, /* %ss */
383  20 + 3 * 4, /* %ds */
384  20 + 2 * 4, /* %es */
385  20 + 1 * 4, /* %fs */
386  20 + 0 * 4 /* %gs */
387 };
388 
389 static void
391 {
392  struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
393 
394  /* Generic FreeBSD support. */
395  fbsd_init_abi (info, gdbarch);
396 
397  /* Inherit stuff from older releases. We assume that FreeBSD
398  4.0-RELEASE always uses ELF. */
399  i386fbsd_init_abi (info, gdbarch);
400 
401  /* FreeBSD 4.0 introduced a new `struct reg'. */
403  tdep->gregset_num_regs = ARRAY_SIZE (i386fbsd4_r_reg_offset);
404  tdep->sizeof_gregset = 19 * 4;
405 
406  /* FreeBSD 4.0 introduced a new `struct sigcontext'. */
408  tdep->sc_num_regs = ARRAY_SIZE (i386fbsd4_sc_reg_offset);
409 
411 
412  /* Iterate over core file register note sections. */
415 
418 }
419 
420 void
422 {
423  gdbarch_register_osabi (bfd_arch_i386, 0, GDB_OSABI_FREEBSD,
425 }
int xsave_xcr0_offset
Definition: i386-tdep.h:144
CORE_ADDR get_frame_pc(struct frame_info *frame)
Definition: frame.c:2376
#define X86_XSTATE_SSE_MASK
Definition: x86-xstate.h:42
bfd_vma CORE_ADDR
Definition: common-types.h:41
static const gdb_byte i386fbsd_osigtramp_middle[]
static const gdb_byte i386fbsd_sigtramp_middle[]
int sc_num_regs
Definition: i386-tdep.h:227
CORE_ADDR sigtramp_start
Definition: i386-tdep.h:216
void() iterate_over_regset_sections_cb(const char *sect_name, int size, const struct regset *regset, const char *human_name, void *cb_data)
Definition: gdbarch.h:99
void warning(const char *fmt,...)
Definition: errors.c:26
CORE_ADDR i386fbsd_sigtramp_start_addr
static const gdb_byte i386fbsd_sigtramp_start[]
const struct regset i386_fpregset
Definition: i386-tdep.c:3933
CORE_ADDR sigtramp_end
Definition: i386-tdep.h:217
struct m32c_reg * pc
Definition: m32c-tdep.c:116
struct link_map_offsets * svr4_ilp32_fetch_link_map_offsets(void)
Definition: solib-svr4.c:3183
#define _(String)
Definition: gdb_locale.h:35
size_t sizeof_fpregset
Definition: i386-tdep.h:66
static void i386fbsd_collect_xstateregset(const struct regset *regset, const struct regcache *regcache, int regnum, void *xstateregs, size_t len)
struct gdbarch_tdep * gdbarch_tdep(struct gdbarch *gdbarch)
Definition: gdbarch.c:1491
#define X86_XSTATE_SIZE(XCR0)
Definition: x86-xstate.h:69
static void i386fbsd_supply_xstateregset(const struct regset *regset, struct regcache *regcache, int regnum, const void *xstateregs, size_t len)
int i386fbsd4_sc_reg_offset[]
Definition: regset.h:34
static int i386fbsd_r_reg_offset[]
enum struct_return struct_return
Definition: arm-tdep.h:137
void _initialize_i386fbsd_tdep(void)
static void i386fbsd_iterate_over_regset_sections(struct gdbarch *gdbarch, iterate_over_regset_sections_cb *cb, void *cb_data, const struct regcache *regcache)
int safe_frame_unwind_memory(struct frame_info *this_frame, CORE_ADDR addr, gdb_byte *buf, int len)
Definition: frame.c:2681
static const struct target_desc * i386fbsd_core_read_description(struct gdbarch *gdbarch, struct target_ops *target, bfd *abfd)
void i386bsd_init_abi(struct gdbarch_info info, struct gdbarch *gdbarch)
Definition: i386-bsd-tdep.c:75
#define I386_FBSD_XSAVE_XCR0_OFFSET
void set_solib_svr4_fetch_link_map_offsets(struct gdbarch *gdbarch, struct link_map_offsets *(*flmo)(void))
Definition: solib-svr4.c:3137
void fbsd_init_abi(struct gdbarch_info info, struct gdbarch *gdbarch)
Definition: fbsd-tdep.c:516
gdb_static_assert(sizeof i386fbsd_sigtramp_start==sizeof i386fbsd_freebsd4_sigtramp_start)
static const gdb_byte i386fbsd_freebsd4_sigtramp_start[]
CORE_ADDR i386fbsd_sigtramp_end_addr
const struct regset i386_gregset
Definition: i386-tdep.c:3928
int regnum
Definition: aarch64-tdep.c:77
void gdbarch_register_osabi(enum bfd_architecture arch, unsigned long machine, enum gdb_osabi osabi, void(*init_osabi)(struct gdbarch_info, struct gdbarch *))
Definition: osabi.c:143
void i387_collect_xsave(const struct regcache *regcache, int regnum, void *xsave, int gcore)
Definition: i387-tdep.c:1306
int * gregset_reg_offset
Definition: i386-tdep.h:61
static const gdb_byte i386fbsd_freebsd4_sigtramp_end[]
static const gdb_byte i386fbsd_osigtramp_start[]
bfd_byte gdb_byte
Definition: common-types.h:38
int(* sigtramp_p)(struct frame_info *)
Definition: i386-tdep.h:220
int i386fbsd_sc_reg_offset[]
uint64_t xcr0
Definition: i386-tdep.h:141
#define X86_XSTATE_AVX_SIZE
Definition: x86-xstate.h:54
static const struct regset i386fbsd_xstateregset
void i386_elf_init_abi(struct gdbarch_info info, struct gdbarch *gdbarch)
Definition: i386-tdep.c:4439
size_t sizeof_gregset
Definition: i386-tdep.h:63
static void i386fbsd4_init_abi(struct gdbarch_info info, struct gdbarch *gdbarch)
static const gdb_byte i386fbsd_freebsd4_sigtramp_middle[]
int * sc_reg_offset
Definition: i386-tdep.h:226
uint64_t i386fbsd_core_read_xcr0(bfd *abfd)
static const gdb_byte i386fbsd_sigtramp_end[]
static int i386fbsd_sigtramp_p(struct frame_info *this_frame)
void set_gdbarch_iterate_over_regset_sections(struct gdbarch *gdbarch, gdbarch_iterate_over_regset_sections_ftype iterate_over_regset_sections)
Definition: gdbarch.c:3647
static const gdb_byte i386fbsd_osigtramp_end[]
void i387_supply_xsave(struct regcache *regcache, int regnum, const void *xsave)
Definition: i387-tdep.c:898
static int i386fbsd4_r_reg_offset[]
int gregset_num_regs
Definition: i386-tdep.h:62
#define X86_XSTATE_AVX
Definition: x86-xstate.h:26
void set_gdbarch_core_read_description(struct gdbarch *gdbarch, gdbarch_core_read_description_ftype core_read_description)
Definition: gdbarch.c:4072
size_t size
Definition: go32-nat.c:242
const struct target_desc * i386_target_description(uint64_t xcr0)
Definition: i386-tdep.c:8714
static void i386fbsd_init_abi(struct gdbarch_info info, struct gdbarch *gdbarch)