1 /* Native-dependent code for GNU/Linux x86-64.
3 Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006
4 Free Software Foundation, Inc.
5 Contributed by Jiri Smid, SuSE Labs.
7 This file is part of GDB.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 51 Franklin Street, Fifth Floor,
22 Boston, MA 02110-1301, USA. */
28 #include "linux-nat.h"
30 #include "gdb_assert.h"
31 #include "gdb_string.h"
32 #include <sys/ptrace.h>
33 #include <sys/debugreg.h>
34 #include <sys/syscall.h>
35 #include <sys/procfs.h>
36 #include <asm/prctl.h>
37 /* FIXME ezannoni-2003-07-09: we need <sys/reg.h> to be included after
38 <asm/ptrace.h> because the latter redefines FS and GS for no apparent
39 reason, and those definitions don't match the ones that libpthread_db
40 uses, which come from <sys/reg.h>. */
41 /* ezannoni-2003-07-09: I think this is fixed. The extraneous defs have
42 been removed from ptrace.h in the kernel. However, better safe than
44 #include <asm/ptrace.h>
46 #include "gdb_proc_service.h"
48 /* Prototypes for supply_gregset etc. */
51 #include "amd64-tdep.h"
52 #include "i386-linux-tdep.h"
53 #include "amd64-nat.h"
55 /* Mapping between the general-purpose registers in GNU/Linux x86-64
56 `struct user' format and GDB's register cache layout. */
58 static int amd64_linux_gregset64_reg_offset
[] =
60 RAX
* 8, RBX
* 8, /* %rax, %rbx */
61 RCX
* 8, RDX
* 8, /* %rcx, %rdx */
62 RSI
* 8, RDI
* 8, /* %rsi, %rdi */
63 RBP
* 8, RSP
* 8, /* %rbp, %rsp */
64 R8
* 8, R9
* 8, /* %r8 ... */
67 R14
* 8, R15
* 8, /* ... %r15 */
68 RIP
* 8, EFLAGS
* 8, /* %rip, %eflags */
69 CS
* 8, SS
* 8, /* %cs, %ss */
70 DS
* 8, ES
* 8, /* %ds, %es */
71 FS
* 8, GS
* 8 /* %fs, %gs */
75 /* Mapping between the general-purpose registers in GNU/Linux x86-64
76 `struct user' format and GDB's register cache layout for GNU/Linux
79 Note that most GNU/Linux x86-64 registers are 64-bit, while the
80 GNU/Linux i386 registers are all 32-bit, but since we're
81 little-endian we get away with that. */
83 /* From <sys/reg.h> on GNU/Linux i386. */
84 static int amd64_linux_gregset32_reg_offset
[] =
86 RAX
* 8, RCX
* 8, /* %eax, %ecx */
87 RDX
* 8, RBX
* 8, /* %edx, %ebx */
88 RSP
* 8, RBP
* 8, /* %esp, %ebp */
89 RSI
* 8, RDI
* 8, /* %esi, %edi */
90 RIP
* 8, EFLAGS
* 8, /* %eip, %eflags */
91 CS
* 8, SS
* 8, /* %cs, %ss */
92 DS
* 8, ES
* 8, /* %ds, %es */
93 FS
* 8, GS
* 8, /* %fs, %gs */
94 -1, -1, -1, -1, -1, -1, -1, -1,
95 -1, -1, -1, -1, -1, -1, -1, -1,
96 -1, -1, -1, -1, -1, -1, -1, -1, -1,
97 ORIG_RAX
* 8 /* "orig_eax" */
101 /* Transfering the general-purpose registers between GDB, inferiors
104 /* Fill GDB's register cache with the general-purpose register values
108 supply_gregset (elf_gregset_t
*gregsetp
)
110 amd64_supply_native_gregset (current_regcache
, gregsetp
, -1);
113 /* Fill register REGNUM (if it is a general-purpose register) in
114 *GREGSETP with the value in GDB's register cache. If REGNUM is -1,
115 do this for all registers. */
118 fill_gregset (elf_gregset_t
*gregsetp
, int regnum
)
120 amd64_collect_native_gregset (current_regcache
, gregsetp
, regnum
);
123 /* Transfering floating-point registers between GDB, inferiors and cores. */
125 /* Fill GDB's register cache with the floating-point and SSE register
126 values in *FPREGSETP. */
129 supply_fpregset (elf_fpregset_t
*fpregsetp
)
131 amd64_supply_fxsave (current_regcache
, -1, fpregsetp
);
134 /* Fill register REGNUM (if it is a floating-point or SSE register) in
135 *FPREGSETP with the value in GDB's register cache. If REGNUM is
136 -1, do this for all registers. */
139 fill_fpregset (elf_fpregset_t
*fpregsetp
, int regnum
)
141 amd64_collect_fxsave (current_regcache
, regnum
, fpregsetp
);
145 /* Transferring arbitrary registers between GDB and inferior. */
147 /* Fetch register REGNUM from the child process. If REGNUM is -1, do
148 this for all registers (including the floating point and SSE
152 amd64_linux_fetch_inferior_registers (int regnum
)
156 /* GNU/Linux LWP ID's are process ID's. */
157 tid
= TIDGET (inferior_ptid
);
159 tid
= PIDGET (inferior_ptid
); /* Not a threaded program. */
161 if (regnum
== -1 || amd64_native_gregset_supplies_p (regnum
))
165 if (ptrace (PTRACE_GETREGS
, tid
, 0, (long) ®s
) < 0)
166 perror_with_name (_("Couldn't get registers"));
168 amd64_supply_native_gregset (current_regcache
, ®s
, -1);
173 if (regnum
== -1 || !amd64_native_gregset_supplies_p (regnum
))
175 elf_fpregset_t fpregs
;
177 if (ptrace (PTRACE_GETFPREGS
, tid
, 0, (long) &fpregs
) < 0)
178 perror_with_name (_("Couldn't get floating point status"));
180 amd64_supply_fxsave (current_regcache
, -1, &fpregs
);
184 /* Store register REGNUM back into the child process. If REGNUM is
185 -1, do this for all registers (including the floating-point and SSE
189 amd64_linux_store_inferior_registers (int regnum
)
193 /* GNU/Linux LWP ID's are process ID's. */
194 tid
= TIDGET (inferior_ptid
);
196 tid
= PIDGET (inferior_ptid
); /* Not a threaded program. */
198 if (regnum
== -1 || amd64_native_gregset_supplies_p (regnum
))
202 if (ptrace (PTRACE_GETREGS
, tid
, 0, (long) ®s
) < 0)
203 perror_with_name (_("Couldn't get registers"));
205 amd64_collect_native_gregset (current_regcache
, ®s
, regnum
);
207 if (ptrace (PTRACE_SETREGS
, tid
, 0, (long) ®s
) < 0)
208 perror_with_name (_("Couldn't write registers"));
214 if (regnum
== -1 || !amd64_native_gregset_supplies_p (regnum
))
216 elf_fpregset_t fpregs
;
218 if (ptrace (PTRACE_GETFPREGS
, tid
, 0, (long) &fpregs
) < 0)
219 perror_with_name (_("Couldn't get floating point status"));
221 amd64_collect_fxsave (current_regcache
, regnum
, &fpregs
);
223 if (ptrace (PTRACE_SETFPREGS
, tid
, 0, (long) &fpregs
) < 0)
224 perror_with_name (_("Couldn't write floating point status"));
232 amd64_linux_dr_get (int regnum
)
237 /* FIXME: kettenis/2001-01-29: It's not clear what we should do with
238 multi-threaded processes here. For now, pretend there is just
240 tid
= PIDGET (inferior_ptid
);
242 /* FIXME: kettenis/2001-03-27: Calling perror_with_name if the
243 ptrace call fails breaks debugging remote targets. The correct
244 way to fix this is to add the hardware breakpoint and watchpoint
245 stuff to the target vectore. For now, just return zero if the
246 ptrace call fails. */
248 value
= ptrace (PT_READ_U
, tid
,
249 offsetof (struct user
, u_debugreg
[regnum
]), 0);
252 perror_with_name (_("Couldn't read debug register"));
261 amd64_linux_dr_set (int regnum
, unsigned long value
)
265 /* FIXME: kettenis/2001-01-29: It's not clear what we should do with
266 multi-threaded processes here. For now, pretend there is just
268 tid
= PIDGET (inferior_ptid
);
271 ptrace (PT_WRITE_U
, tid
, offsetof (struct user
, u_debugreg
[regnum
]), value
);
273 perror_with_name (_("Couldn't write debug register"));
277 amd64_linux_dr_set_control (unsigned long control
)
279 amd64_linux_dr_set (DR_CONTROL
, control
);
283 amd64_linux_dr_set_addr (int regnum
, CORE_ADDR addr
)
285 gdb_assert (regnum
>= 0 && regnum
<= DR_LASTADDR
- DR_FIRSTADDR
);
287 amd64_linux_dr_set (DR_FIRSTADDR
+ regnum
, addr
);
291 amd64_linux_dr_reset_addr (int regnum
)
293 gdb_assert (regnum
>= 0 && regnum
<= DR_LASTADDR
- DR_FIRSTADDR
);
295 amd64_linux_dr_set (DR_FIRSTADDR
+ regnum
, 0L);
299 amd64_linux_dr_get_status (void)
301 return amd64_linux_dr_get (DR_STATUS
);
305 /* This function is called by libthread_db as part of its handling of
306 a request for a thread's local storage address. */
309 ps_get_thread_area (const struct ps_prochandle
*ph
,
310 lwpid_t lwpid
, int idx
, void **base
)
312 if (gdbarch_ptr_bit (current_gdbarch
) == 32)
314 /* The full structure is found in <asm-i386/ldt.h>. The second
315 integer is the LDT's base_address and that is used to locate
316 the thread's local storage. See i386-linux-nat.c more
318 unsigned int desc
[4];
320 /* This code assumes that "int" is 32 bits and that
321 GET_THREAD_AREA returns no more than 4 int values. */
322 gdb_assert (sizeof (int) == 4);
323 #ifndef PTRACE_GET_THREAD_AREA
324 #define PTRACE_GET_THREAD_AREA 25
326 if (ptrace (PTRACE_GET_THREAD_AREA
,
327 lwpid
, (void *) (long) idx
, (unsigned long) &desc
) < 0)
330 /* Extend the value to 64 bits. Here it's assumed that a "long"
331 and a "void *" are the same. */
332 (*base
) = (void *) (long) desc
[1];
337 /* This definition comes from prctl.h, but some kernels may not
339 #ifndef PTRACE_ARCH_PRCTL
340 #define PTRACE_ARCH_PRCTL 30
342 /* FIXME: ezannoni-2003-07-09 see comment above about include
343 file order. We could be getting bogus values for these two. */
344 gdb_assert (FS
< ELF_NGREG
);
345 gdb_assert (GS
< ELF_NGREG
);
349 if (ptrace (PTRACE_ARCH_PRCTL
, lwpid
, base
, ARCH_GET_FS
) == 0)
353 if (ptrace (PTRACE_ARCH_PRCTL
, lwpid
, base
, ARCH_GET_GS
) == 0)
356 default: /* Should not happen. */
360 return PS_ERR
; /* ptrace failed. */
364 static void (*super_post_startup_inferior
) (ptid_t ptid
);
367 amd64_linux_child_post_startup_inferior (ptid_t ptid
)
369 i386_cleanup_dregs ();
370 super_post_startup_inferior (ptid
);
374 /* Provide a prototype to silence -Wmissing-prototypes. */
375 void _initialize_amd64_linux_nat (void);
378 _initialize_amd64_linux_nat (void)
380 struct target_ops
*t
;
382 amd64_native_gregset32_reg_offset
= amd64_linux_gregset32_reg_offset
;
383 amd64_native_gregset32_num_regs
= I386_LINUX_NUM_REGS
;
384 amd64_native_gregset64_reg_offset
= amd64_linux_gregset64_reg_offset
;
386 gdb_assert (ARRAY_SIZE (amd64_linux_gregset32_reg_offset
)
387 == amd64_native_gregset32_num_regs
);
388 gdb_assert (ARRAY_SIZE (amd64_linux_gregset64_reg_offset
)
389 == amd64_native_gregset64_num_regs
);
391 /* Fill in the generic GNU/Linux methods. */
394 /* Override the GNU/Linux inferior startup hook. */
395 super_post_startup_inferior
= t
->to_post_startup_inferior
;
396 t
->to_post_startup_inferior
= amd64_linux_child_post_startup_inferior
;
398 /* Add our register access methods. */
399 t
->to_fetch_registers
= amd64_linux_fetch_inferior_registers
;
400 t
->to_store_registers
= amd64_linux_store_inferior_registers
;
402 /* Register the target. */
403 linux_nat_add_target (t
);